/home/vianto5/.trash/cititower.mx/wp-content/plugins/siteorigin-panels/inc
NameSizeModeActions
data/-0755rm
installer/-0755rm
widgets/-0755rm
admin-dashboard.php39540644editdlrm
admin-layouts.php189550644editdlrm
admin-widget-dialog.php62960644editdlrm
admin-widgets-bundle.php48940644editdlrm
admin.php732340644editdlrm
compatibility.php37030644editdlrm
css-builder.php84740644editdlrm
functions.php26410644editdlrm
home.php12880644editdlrm
live-editor.php25440644editdlrm
post-content-filters.php26050644editdlrm
renderer-legacy.php57330644editdlrm
renderer.php431000644editdlrm
revisions.php26970644editdlrm
settings.php279240644editdlrm
sidebars-emulator.php77680644editdlrm
styles-admin.php268060644editdlrm
styles.php447790644editdlrm
widget-shortcode.php39710644editdlrm
Edit: /home/vianto5/.trash/cititower.mx/wp-content/plugins/siteorigin-panels/inc/live-editor.php (2544B)
ID ) && current_user_can( 'edit_post', $post->ID ) ) { // Disable XSS protection when in the Live Editor header( 'X-XSS-Protection: 0' ); } } /** * Edit the page builder data when we're viewing the live editor version. This is necessary to ensure updated styles * are rendered in the preview. * * @return array */ public function post_metadata( $value, $post_id, $meta_key ) { if ( $meta_key == 'panels_data' && current_user_can( 'edit_post', $post_id ) && ! empty( $_POST['live_editor_panels_data'] ) && $_POST['live_editor_post_ID'] == $post_id ) { $value = array( json_decode( wp_unslash( $_POST['live_editor_panels_data'] ), true ) ); } return $value; } /** * Load the frontend scripts for the live editor */ public function frontend_scripts() { wp_enqueue_script( 'live-editor-front', esc_url( siteorigin_panels_url( 'js/live-editor/live-editor-front' . SITEORIGIN_PANELS_JS_SUFFIX . '.js' ) ), array( 'jquery' ), SITEORIGIN_PANELS_VERSION ); wp_enqueue_script( 'live-editor-scrollto', esc_url( siteorigin_panels_url( 'js/live-editor/jquery.scrollTo' . SITEORIGIN_PANELS_JS_SUFFIX . '.js' ) ), array( 'jquery' ), SITEORIGIN_PANELS_VERSION ); wp_enqueue_style( 'live-editor-front', esc_url( siteorigin_panels_url( 'css/live-editor-front' . SITEORIGIN_PANELS_CSS_SUFFIX . '.css' ) ), array(), SITEORIGIN_PANELS_VERSION ); } }