Server IP : 192.158.238.246 / Your IP : 3.22.42.14 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/cwd/plugins/code-snippets/php/admin-menus/ |
Upload File : |
<?php namespace Code_Snippets; use Code_Snippets\Cloud\Cloud_Search_List_Table; use function Code_Snippets\Settings\get_setting; /** * This class handles the manage snippets menu * * @since 2.4.0 * @package Code_Snippets */ class Manage_Menu extends Admin_Menu { /** * Holds the list table class * * @var List_Table */ public List_Table $list_table; /** * Instance of the cloud list table class for search results. * * @var Cloud_Search_List_Table */ public Cloud_Search_List_Table $cloud_search_list_table; /** * Class constructor */ public function __construct() { parent::__construct( 'manage', _x( 'All Snippets', 'menu label', 'code-snippets' ), __( 'Snippets', 'code-snippets' ) ); } /** * Register action and filter hooks */ public function run() { parent::run(); if ( code_snippets()->is_compact_menu() ) { add_action( 'admin_menu', array( $this, 'register_compact_menu' ), 2 ); add_action( 'network_admin_menu', array( $this, 'register_compact_menu' ), 2 ); } add_action( 'admin_menu', array( $this, 'register_upgrade_menu' ), 500 ); add_filter( 'set-screen-option', array( $this, 'save_screen_option' ), 10, 3 ); add_action( 'wp_ajax_update_code_snippet', array( $this, 'ajax_callback' ) ); } /** * Register the top-level 'Snippets' menu and associated 'Manage' subpage */ public function register() { $icon_xml = '<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="1024"><path fill="transparent" d="M191.968 464.224H350.88c23.68 0 42.656 19.2 42.656 42.656 0 11.488-4.48 21.984-11.968 29.632l.192.448-108.768 108.736c-75.104 75.136-75.104 196.512 0 271.584 74.88 74.848 196.448 74.848 271.552 0 74.88-75.104 74.88-196.48 0-271.584-21.76-21.504-47.36-37.12-74.464-46.272l28.608-28.576h365.248c87.04 0 157.856-74.016 159.968-166.4 0-1.472.224-2.752 0-4.256-2.112-23.904-22.368-42.656-46.912-42.656h-264.96L903.36 166.208c17.504-17.504 18.56-45.024 3.2-63.36-1.024-1.28-2.08-2.144-3.2-3.2-66.528-63.552-169.152-65.92-230.56-4.48L410.432 357.536h-46.528c12.8-25.6 20.032-54.624 20.032-85.344 0-106.016-85.952-192-192-192-106.016 0-191.968 85.984-191.968 192 .032 106.08 85.984 192.032 192 192.032zm85.344-191.968c0 47.136-38.176 85.344-85.344 85.344-47.136 0-85.312-38.176-85.312-85.344s38.176-85.344 85.312-85.344c47.168 0 85.344 38.208 85.344 85.344zm191.776 449.056c33.28 33.248 33.28 87.264 0 120.512-33.28 33.472-87.264 33.472-120.736 0-33.28-33.248-33.28-87.264 0-120.512 33.472-33.504 87.456-33.504 120.736 0z"/></svg>'; // phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode $encoded_icon = base64_encode( $icon_xml ); // Register the top-level menu. add_menu_page( __( 'Snippets', 'code-snippets' ), _x( 'Snippets', 'top-level menu label', 'code-snippets' ), code_snippets()->get_cap(), code_snippets()->get_menu_slug(), array( $this, 'render' ), "data:image/svg+xml;base64,$encoded_icon", apply_filters( 'code_snippets/admin/menu_position', is_network_admin() ? 21 : 67 ) ); // Register the sub-menu. parent::register(); } /** * Register the 'upgrade' menu item. * * @return void */ public function register_upgrade_menu() { if ( get_setting( 'general', 'hide_upgrade_menu' ) ) { return; } $menu_title = sprintf( '<span class="button button-primary code-snippets-upgrade-button">%s %s</span>', _x( 'Go Pro', 'top-level menu label', 'code-snippets' ), '<span class="dashicons dashicons-external"></span>' ); $hook = add_submenu_page( code_snippets()->get_menu_slug(), __( 'Upgrade to Pro', 'code-snippets' ), $menu_title, code_snippets()->get_cap(), 'code_snippets_upgrade', '__return_empty_string', 100 ); add_action( "load-$hook", [ $this, 'load_upgrade_menu' ] ); add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_menu_button_css' ] ); } /** * Print CSS required for the upgrade button. * * @return void */ public function enqueue_menu_button_css() { wp_enqueue_style( 'code-snippets-menu-button', plugins_url( 'dist/menu-button.css', PLUGIN_FILE ), [], PLUGIN_VERSION ); } /** * Redirect the user upon opening the upgrade menu. * * @return void */ public function load_upgrade_menu() { wp_safe_redirect( 'https://snipco.de/JE2f' ); exit; } /** * Add menu pages for the compact menu */ public function register_compact_menu() { if ( ! code_snippets()->is_compact_menu() ) { return; } $sub = code_snippets()->get_menu_slug( isset( $_GET['sub'] ) ? sanitize_key( $_GET['sub'] ) : 'snippets' ); $classmap = array( 'snippets' => 'manage', 'add-snippet' => 'edit', 'edit-snippet' => 'edit', 'import-code-snippets' => 'import', 'snippets-settings' => 'settings', ); $menus = code_snippets()->admin->menus; $class = isset( $classmap[ $sub ], $menus[ $classmap[ $sub ] ] ) ? $menus[ $classmap[ $sub ] ] : $this; /* Add a submenu to the Tools menu */ $hook = add_submenu_page( 'tools.php', __( 'Snippets', 'code-snippets' ), _x( 'Snippets', 'tools submenu label', 'code-snippets' ), code_snippets()->get_cap(), code_snippets()->get_menu_slug(), array( $class, 'render' ) ); add_action( 'load-' . $hook, array( $class, 'load' ) ); } /** * Executed when the admin page is loaded */ public function load() { parent::load(); $contextual_help = new Contextual_Help( 'manage' ); $contextual_help->load(); $this->cloud_search_list_table = new Cloud_Search_List_Table(); $this->cloud_search_list_table->prepare_items(); $this->list_table = new List_Table(); $this->list_table->prepare_items(); } /** * Enqueue scripts and stylesheets for the admin page */ public function enqueue_assets() { $plugin = code_snippets(); $rtl = is_rtl() ? '-rtl' : ''; wp_enqueue_style( 'code-snippets-manage', plugins_url( "dist/manage$rtl.css", $plugin->file ), [], $plugin->version ); wp_enqueue_script( 'code-snippets-manage-js', plugins_url( 'dist/manage.js', $plugin->file ), [ 'wp-i18n' ], $plugin->version, true ); wp_set_script_translations( 'code-snippets-manage-js', 'code-snippets' ); if ( 'cloud' === $this->get_current_type() || 'cloud_search' === $this->get_current_type() ) { Front_End::enqueue_all_prism_themes(); } } /** * Get the currently displayed snippet type. * * @return string */ protected function get_current_type(): string { $types = Plugin::get_types(); $current_type = isset( $_GET['type'] ) ? sanitize_key( wp_unslash( $_GET['type'] ) ) : 'all'; return isset( $types[ $current_type ] ) ? $current_type : 'all'; } /** * Display a Go Pro badge. * * @return void */ public function print_pro_message() { echo '<span class="go-pro-badge">', esc_html_x( 'Pro', 'go pro badge', 'code-snippets' ), '</span>'; } /** * Print the status and error messages */ protected function print_messages() { // Output a warning if safe mode is active. if ( defined( 'CODE_SNIPPETS_SAFE_MODE' ) && CODE_SNIPPETS_SAFE_MODE ) { echo '<div id="message" class="error fade"><p>'; echo wp_kses_post( __( '<strong>Warning:</strong> Safe mode is active and snippets will not execute! Remove the <code>CODE_SNIPPETS_SAFE_MODE</code> constant from <code>wp-config.php</code> to turn off safe mode. <a href="https://help.codesnippets.pro/article/12-safe-mode" target="_blank">Help</a>', 'code-snippets' ) ); echo '</p></div>'; } $this->print_result_message( apply_filters( 'code_snippets/manage/result_messages', array( 'executed' => __( 'Snippet <strong>executed</strong>.', 'code-snippets' ), 'activated' => __( 'Snippet <strong>activated</strong>.', 'code-snippets' ), 'activated-multi' => __( 'Selected snippets <strong>activated</strong>.', 'code-snippets' ), 'deactivated' => __( 'Snippet <strong>deactivated</strong>.', 'code-snippets' ), 'deactivated-multi' => __( 'Selected snippets <strong>deactivated</strong>.', 'code-snippets' ), 'deleted' => __( 'Snippet <strong>deleted</strong>.', 'code-snippets' ), 'deleted-multi' => __( 'Selected snippets <strong>deleted</strong>.', 'code-snippets' ), 'cloned' => __( 'Snippet <strong>cloned</strong>.', 'code-snippets' ), 'cloned-multi' => __( 'Selected snippets <strong>cloned</strong>.', 'code-snippets' ), ) ) ); } /** * Handles saving the user's snippets per page preference * * @param mixed $status Current screen option status. * @param string $option The screen option name. * @param mixed $value Screen option value. * * @return mixed */ public function save_screen_option( $status, string $option, $value ) { return 'snippets_per_page' === $option ? $value : $status; } /** * Update the priority value for a snippet. * * @param Snippet $snippet Snippet to update. * * @return void */ private function update_snippet_priority( Snippet $snippet ) { global $wpdb; $table = code_snippets()->db->get_table_name( $snippet->network ); $wpdb->update( $table, array( 'priority' => $snippet->priority ), array( 'id' => $snippet->id ), array( '%d' ), array( '%d' ) ); clean_snippets_cache( $table ); } /** * Handle AJAX requests */ public function ajax_callback() { check_ajax_referer( 'code_snippets_manage_ajax' ); if ( ! isset( $_POST['field'], $_POST['snippet'] ) ) { wp_send_json_error( array( 'type' => 'param_error', 'message' => 'incomplete request', ) ); } // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $snippet_data = array_map( 'sanitize_text_field', json_decode( wp_unslash( $_POST['snippet'] ), true ) ); $snippet = new Snippet( $snippet_data ); $field = sanitize_key( $_POST['field'] ); if ( 'priority' === $field ) { if ( ! isset( $snippet_data['priority'] ) || ! is_numeric( $snippet_data['priority'] ) ) { wp_send_json_error( array( 'type' => 'param_error', 'message' => 'missing snippet priority data', ) ); } $this->update_snippet_priority( $snippet ); } elseif ( 'active' === $field ) { if ( ! isset( $snippet_data['active'] ) ) { wp_send_json_error( array( 'type' => 'param_error', 'message' => 'missing snippet active data', ) ); } if ( $snippet->shared_network ) { $active_shared_snippets = get_option( 'active_shared_network_snippets', array() ); if ( in_array( $snippet->id, $active_shared_snippets, true ) !== $snippet->active ) { $active_shared_snippets = $snippet->active ? array_merge( $active_shared_snippets, array( $snippet->id ) ) : array_diff( $active_shared_snippets, array( $snippet->id ) ); update_option( 'active_shared_network_snippets', $active_shared_snippets ); clean_active_snippets_cache( code_snippets()->db->ms_table ); } } elseif ( $snippet->active ) { $result = activate_snippet( $snippet->id, $snippet->network ); if ( is_string( $result ) ) { wp_send_json_error( array( 'type' => 'action_error', 'message' => $result, ) ); } } else { deactivate_snippet( $snippet->id, $snippet->network ); } } wp_send_json_success(); } }