remove_debug_bar_codemirror(); } /** * Register the admin menu */ public function register() { parent::register(); /* Only preserve the edit menu if we are currently editing a snippet */ if ( ! isset( $_REQUEST['page'] ) || $_REQUEST['page'] !== $this->slug ) { remove_submenu_page( $this->base_slug, $this->slug ); } /* Add New Snippet menu */ $this->add_menu( code_snippets()->get_menu_slug( 'add' ), _x( 'Add New', 'menu label', 'code-snippets' ), __( 'Add New Snippet', 'code-snippets' ) ); } /** * Executed when the menu is loaded */ public function load() { parent::load(); // Retrieve the current snippet object $this->load_snippet_data(); $screen = get_current_screen(); $edit_hook = get_plugin_page_hookname( $this->slug, $this->base_slug ); if ( $screen->in_admin( 'network' ) ) { $edit_hook .= '-network'; } /* Don't allow visiting the edit snippet page without a valid ID */ if ( $screen->base === $edit_hook && ( ! isset( $_REQUEST['id'] ) || 0 === $this->snippet->id ) ) { wp_redirect( code_snippets()->get_menu_url( 'add' ) ); exit; } /* Load the contextual help tabs */ $contextual_help = new Code_Snippets_Contextual_Help( 'edit' ); $contextual_help->load(); /* Register action hooks */ if ( code_snippets_get_setting( 'general', 'enable_description' ) ) { add_action( 'code_snippets/admin/single', array( $this, 'render_description_editor' ), 9 ); } if ( code_snippets_get_setting( 'general', 'enable_tags' ) ) { add_action( 'code_snippets/admin/single', array( $this, 'render_tags_editor' ) ); } add_action( 'code_snippets/admin/single', array( $this, 'render_priority_setting' ), 0 ); if ( code_snippets_get_setting( 'general', 'snippet_scope_enabled' ) ) { add_action( 'code_snippets/admin/single', array( $this, 'render_scope_setting' ), 1 ); } if ( is_network_admin() ) { add_action( 'code_snippets/admin/single', array( $this, 'render_multisite_sharing_setting' ), 1 ); } if ( apply_filters( 'code_snippets/extra_save_buttons', true ) ) { add_action( 'code_snippets/admin/code_editor_toolbar', array( $this, 'render_extra_submit_buttons' ) ); } if ( apply_filters( 'code_snippets/enable_code_direction', is_rtl() ) ) { add_action( 'code_snippets/admin/code_editor_toolbar', array( $this, 'render_direction_setting' ), 11, 0 ); } $this->process_actions(); } /** * Load the data for the snippet currently being edited */ public function load_snippet_data() { $edit_id = isset( $_REQUEST['id'] ) && intval( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : 0; $this->snippet = get_snippet( $edit_id ); } /** * Process data sent from the edit page */ private function process_actions() { /* Check for a valid nonce */ if ( ! isset( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'save_snippet' ) ) { return; } if ( isset( $_POST['save_snippet'] ) || isset( $_POST['save_snippet_execute'] ) || isset( $_POST['save_snippet_activate'] ) || isset( $_POST['save_snippet_deactivate'] ) ) { $this->save_posted_snippet(); } if ( isset( $_POST['snippet_id'] ) ) { $snippet_id = intval( $_POST['snippet_id'] ); /* Delete the snippet if the button was clicked */ if ( isset( $_POST['delete_snippet'] ) ) { delete_snippet( $snippet_id ); wp_redirect( add_query_arg( 'result', 'delete', code_snippets()->get_menu_url( 'manage' ) ) ); exit; } /* Export the snippet if the button was clicked */ if ( isset( $_POST['export_snippet'] ) ) { export_snippets( array( $snippet_id ) ); } /* Download the snippet if the button was clicked */ if ( isset( $_POST['download_snippet'] ) ) { download_snippets( array( $snippet_id ) ); } } } /** * Remove the sharing status from a network snippet * * @param int $snippet_id */ private function unshare_network_snippet( $snippet_id ) { $shared_snippets = get_site_option( 'shared_network_snippets', array() ); if ( ! in_array( $snippet_id, $shared_snippets, true ) ) { return; } /* Remove the snippet ID from the array */ $shared_snippets = array_diff( $shared_snippets, array( $snippet_id ) ); update_site_option( 'shared_network_snippets', array_values( $shared_snippets ) ); /* Deactivate on all sites */ global $wpdb; $sites = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); if ( $sites ) { foreach ( $sites as $site ) { switch_to_blog( $site ); $active_shared_snippets = get_option( 'active_shared_network_snippets' ); if ( is_array( $active_shared_snippets ) ) { $active_shared_snippets = array_diff( $active_shared_snippets, array( $snippet_id ) ); update_option( 'active_shared_network_snippets', $active_shared_snippets ); } } restore_current_blog(); } } private function code_error_callback( $out ) { $error = error_get_last(); if ( is_null( $error ) ) { return $out; } $m = '
' . sprintf( esc_html__( 'The code snippet you are trying to save produced a fatal error on line %d:', 'code-snippets' ), intval( $error['line'] ) ) . '
'; $m .= '' . esc_html( $error['message'] ) . ''; $m .= '' . esc_html__( 'The previous version of the snippet is unchanged, and the rest of this site should be functioning normally as before.', 'code-snippets' ) . '
'; $m .= '' . esc_html__( 'Please use the back button in your browser to return to the previous page and try to fix the code error.', 'code-snippets' ); $m .= ' ' . esc_html__( 'If you prefer, you can close this page and discard the changes you just made. No changes will be made to this site.', 'code-snippets' ) . '
'; return $m; } /** * Validate the snippet code before saving to database * * @param Code_Snippet $snippet * * @return bool true if code produces errors */ private function test_code( Code_Snippet $snippet ) { if ( empty( $snippet->code ) ) { return false; } ob_start( array( $this, 'code_error_callback' ) ); $result = eval( $snippet->code ); ob_end_clean(); do_action( 'code_snippets/after_execute_snippet', $snippet->id, $snippet->code, $result ); return false === $result; } /** * Save the posted snippet data to the database and redirect */ private function save_posted_snippet() { /* Build snippet object from fields with 'snippet_' prefix */ $snippet = new Code_Snippet(); foreach ( $_POST as $field => $value ) { if ( 'snippet_' === substr( $field, 0, 8 ) ) { /* Remove the 'snippet_' prefix from field name and set it on the object */ $snippet->set_field( substr( $field, 8 ), stripslashes( $value ) ); } } if ( isset( $_POST['save_snippet_execute'] ) && 'single-use' !== $snippet->scope ) { unset( $_POST['save_snippet_execute'] ); $_POST['save_snippet'] = 'yes'; } /* Activate or deactivate the snippet before saving if we clicked the button */ if ( isset( $_POST['save_snippet_execute'] ) ) { $snippet->active = 1; } elseif ( isset( $_POST['snippet_sharing'] ) && 'on' === $_POST['snippet_sharing'] ) { // Shared network snippets cannot be network activated $snippet->active = 0; unset( $_POST['save_snippet_activate'], $_POST['save_snippet_deactivate'] ); } elseif ( isset( $_POST['save_snippet_activate'] ) ) { $snippet->active = 1; } elseif ( isset( $_POST['save_snippet_deactivate'] ) ) { $snippet->active = 0; } /* Deactivate snippet if code contains errors */ if ( $snippet->active && 'single-use' !== $snippet->scope ) { $validator = new Code_Snippets_Validator( $snippet->code ); $code_error = $validator->validate(); if ( ! $code_error ) { $code_error = $this->test_code( $snippet ); } if ( $code_error ) { $snippet->active = 0; } } /* Save the snippet to the database */ $snippet_id = save_snippet( $snippet ); /* Update the shared network snippets if necessary */ if ( $snippet_id && is_network_admin() ) { if ( isset( $_POST['snippet_sharing'] ) && 'on' === $_POST['snippet_sharing'] ) { $shared_snippets = get_site_option( 'shared_network_snippets', array() ); /* Add the snippet ID to the array if it isn't already */ if ( ! in_array( $snippet_id, $shared_snippets, true ) ) { $shared_snippets[] = $snippet_id; update_site_option( 'shared_network_snippets', array_values( $shared_snippets ) ); } } else { $this->unshare_network_snippet( $snippet_id ); } } /* If the saved snippet ID is invalid, display an error message */ if ( ! $snippet_id || $snippet_id < 1 ) { /* An error occurred */ wp_redirect( add_query_arg( 'result', 'save-error', code_snippets()->get_menu_url( 'add' ) ) ); exit; } /* Display message if a parse error occurred */ if ( isset( $code_error ) && $code_error ) { wp_redirect( add_query_arg( array( 'id' => $snippet_id, 'result' => 'code-error', ), code_snippets()->get_menu_url( 'edit' ) ) ); exit; } /* Set the result depending on if the snippet was just added */ $result = isset( $_POST['snippet_id'] ) ? 'updated' : 'added'; /* Append a suffix if the snippet was activated or deactivated */ if ( isset( $_POST['save_snippet_activate'] ) ) { $result .= '-and-activated'; } elseif ( isset( $_POST['save_snippet_deactivate'] ) ) { $result .= '-and-deactivated'; } elseif ( isset( $_POST['save_snippet_execute'] ) ) { $result .= '-and-executed'; } /* Redirect to edit snippet page */ $redirect_uri = add_query_arg( array( 'id' => $snippet_id, 'result' => $result, ), code_snippets()->get_menu_url( 'edit' ) ); wp_redirect( esc_url_raw( $redirect_uri ) ); exit; } /** * Add a description editor to the single snippet page * * @param Code_Snippet $snippet The snippet being used for this page */ public function render_description_editor( Code_Snippet $snippet ) { $settings = code_snippets_get_settings(); $settings = $settings['description_editor']; /* Hack to remove space between heading and editor tabs */ $inline_heading = ! $settings['media_buttons'] && 'false' !== get_user_option( 'rich_editing' ); echo ''; remove_editor_styles(); // stop custom theme styling interfering with the editor wp_editor( $snippet->desc, 'description', apply_filters( 'code_snippets/admin/description_editor_settings', array( 'textarea_name' => 'snippet_description', 'textarea_rows' => $settings['rows'], 'teeny' => ! $settings['use_full_mce'], 'media_buttons' => $settings['media_buttons'], ) ) ); } /** * Render the interface for editing snippet tags * * @param Code_Snippet $snippet the snippet currently being edited */ public function render_tags_editor( Code_Snippet $snippet ) { ?>__( 'Run snippet everywhere', 'code-snippets' ), 'admin' => __( 'Only run in administration area', 'code-snippets' ), 'front-end' => __( 'Only run on site front-end', 'code-snippets' ), 'single-use' => __( 'Only run once', 'code-snippets' ), ); echo '
'; foreach ( Code_Snippet::get_all_scopes() as $scope ) { printf( '', esc_attr( $icons[ $scope ] ), esc_html( $labels[ $scope ] ) ); } echo '
'; } /** * Render the setting for shared network snippets * * @param object $snippet The snippet currently being edited */ public function render_multisite_sharing_setting( $snippet ) { $shared_snippets = get_site_option( 'shared_network_snippets', array() ); ?>%s
%s
', esc_html__( 'The snippet has been deactivated due to an error in the code.', 'code-snippets' ), '
', esc_html__( 'An error occurred when saving the snippet.', 'code-snippets' ), '
', wp_kses( $messages[ $result ], array( 'strong' => array() ) ), '