Файловый менеджер - Редактировать - /var/www/portal.bdu.ac.bd/public_html/wp-content/plugins/magazine-blocks/includes/Admin.php
Назад
<?php /** * AdminMenu class. * * @package Magazine Blocks * @since 1.0.0 */ namespace MagazineBlocks; // Exit if accessed directly. defined( 'ABSPATH' ) || exit; use MagazineBlocks\Traits\Singleton; /** * Admin class. */ class Admin { use Singleton; /** * Constructor. */ protected function __construct() { $this->init_hooks(); } /** * Init hooks. * * @since 1.0.0 */ private function init_hooks() { add_action( 'admin_menu', array( $this, 'init_menus' ) ); add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ), 1 ); add_filter( 'update_footer', array( $this, 'admin_footer_version' ), 11 ); add_action( 'in_admin_header', array( $this, 'hide_admin_notices' ) ); add_action( 'admin_init', array( $this, 'admin_redirects' ) ); } /** * Init menus. * * @since 1.0.0 */ public function init_menus() { $magazine_blocks_page = add_menu_page( esc_html__( 'Magazine Blocks', 'magazine-blocks' ), esc_html__( 'Magazine Blocks', 'magazine-blocks' ), 'manage_options', 'magazine-blocks', array( $this, 'markup' ), 'data:image/svg+xml;base64,' . base64_encode( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2V2h20zM3 21h18V3H3z" fill="#fff"/><path d="M13.46 10l-1.39-5-1.39 5zm.92 3H9.77l-1 4.46V19h6.4v-1.52z" fill="#fff" fill-rule="evenodd"/></svg>' ) // phpcs:ignore ); add_submenu_page( 'magazine-blocks', esc_html__( 'Dashboard', 'magazine-blocks' ), esc_html__( 'Dashboard', 'magazine-blocks' ), 'manage_options', 'magazine-blocks#/dashboard', array( $this, 'markup' ) ); add_submenu_page( 'magazine-blocks', esc_html__( 'Blocks', 'magazine-blocks' ), esc_html__( 'Blocks', 'magazine-blocks' ), 'manage_options', 'magazine-blocks#/blocks', array( $this, 'markup' ) ); add_submenu_page( 'magazine-blocks', esc_html__( 'Products', 'magazine-blocks' ), esc_html__( 'Products', 'magazine-blocks' ), 'manage_options', 'magazine-blocks#/products', array( $this, 'markup' ) ); add_submenu_page( 'magazine-blocks', esc_html__( 'Settings', 'magazine-blocks' ), esc_html__( 'Settings', 'magazine-blocks' ), 'manage_options', 'magazine-blocks#/settings', array( $this, 'markup' ) ); // add_submenu_page( // 'magazine-blocks', // esc_html__( 'Free vs Pro', 'magazine-blocks' ), // esc_html__( 'Free vs Pro', 'magazine-blocks' ), // 'manage_options', // 'magazine-blocks#/free-vs-pro', // array( $this, 'markup' ) // ); add_submenu_page( 'magazine-blocks', esc_html__( 'Help', 'magazine-blocks' ), esc_html__( 'Help', 'magazine-blocks' ), 'manage_options', 'magazine-blocks#/help', array( $this, 'markup' ) ); add_action( "admin_print_scripts-$magazine_blocks_page", array( $this, 'enqueue' ) ); remove_submenu_page( 'magazine-blocks', 'magazine-blocks' ); } /** * Markup. * * @since 1.0.0 */ public function markup() { echo '<div id="mzb"></div>'; } /** * Enqueue. * * @since 1.0.0 */ public function enqueue() { wp_enqueue_script( 'magazine-blocks-admin' ); } /** * Change admin footer text on Magazine Blocks page. * * @param string $text Admin footer text. * @return string Admin footer text. */ public function admin_footer_text( string $text ): string { if ( 'toplevel_page_magazine_blocks' !== get_current_screen()->id ) { return $text; } return __( 'Thank you for creating with Magazine Blocks.', 'magazine-blocks' ); } /** * Override WordPress version with plugin version. * * @param string $version Version text. * * @return string Version text. */ public function admin_footer_version( string $version ): string { return 'toplevel_page_magazine_blocks' !== get_current_screen()->id ? $version : __( 'Version ', 'magazine-blocks' ) . MAGAZINE_BLOCKS_VERSION; } /** * Redirecting user to dashboard page. */ public function admin_redirects() { if ( get_option( '_magazine_blocks_activation_redirect' ) && apply_filters( 'magazine_blocks_activation_redirect', true ) ) { update_option( '_magazine_blocks_activation_redirect', false ); wp_safe_redirect( admin_url( 'index.php?page=magazine-blocks#/getting-started' ) ); exit; } } /** * Hide admin notices from Magazine Blocks admin pages. * * @since 1.0.0 */ public function hide_admin_notices() { // Bail if we're not on a Magazine Blocks screen or page. if ( empty( $_REQUEST['page'] ) || false === strpos( sanitize_text_field( wp_unslash( $_REQUEST['page'] ) ), 'magazine-blocks' ) ) { // phpcs:ignore WordPress.Security.NonceVerification return; } global $wp_filter; $ignore_notices = apply_filters( 'magazine_blocks_ignore_hide_admin_notices', array() ); foreach ( array( 'user_admin_notices', 'admin_notices', 'all_admin_notices' ) as $wp_notice ) { if ( empty( $wp_filter[ $wp_notice ] ) ) { continue; } $hook_callbacks = $wp_filter[ $wp_notice ]->callbacks; if ( empty( $hook_callbacks ) || ! is_array( $hook_callbacks ) ) { continue; } foreach ( $hook_callbacks as $priority => $hooks ) { foreach ( $hooks as $name => $callback ) { if ( ! empty( $name ) && in_array( $name, $ignore_notices, true ) ) { continue; } if ( ! empty( $callback['function'] ) && ! is_a( $callback['function'], '\Closure' ) && isset( $callback['function'][0], $callback['function'][1] ) && is_object( $callback['function'][0] ) && in_array( $callback['function'][1], $ignore_notices, true ) ) { continue; } unset( $wp_filter[ $wp_notice ]->callbacks[ $priority ][ $name ] ); } } } } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.3-4ubuntu2.28 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка