![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/gallery-images-ape/libs/ |
<?php /* * Ape Gallery * Author: Wp Gallery Ape * Author URI: https://wpape.net/ * License: GPL-2.0+ */ if ( ! defined( 'WPINC' ) ) die; if ( ! defined( 'ABSPATH' ) ){ exit; } class wpApeGalleryAdminMenuClass extends Gallery_Images_Ape{ public function hooks(){ add_action( 'admin_menu', array($this, 'addMenu') ); add_action( 'in_admin_header', array($this, 'includeFiles') ); add_action( 'init', array($this, 'menuRedirect') ); } public function includeFiles(){ wp_enqueue_style ( WPAPE_GALLERY_ASSET.'admin-menu-css', WPAPE_GALLERY_URL.'assets/css/admin/menu.style.css' ); wp_enqueue_script( WPAPE_GALLERY_ASSET.'admin-menu-js', WPAPE_GALLERY_URL.'assets/js/admin/menu.fix.js', array( 'jquery' ), WPAPE_GALLERY_VERSION, true ); //wp_add_inline_script( WPAPE_GALLERY_ASSET.'admin-menu-js', $this->getJavaScriptInline() ); } public function getJavaScriptInline(){ $javascript = ' '; return $javascript; } public function addMenu() { if( !WPAPE_GALLERY_PREMIUM ){ add_submenu_page( WPAPE_GALLERY_EDIT_POST_URL, 'Gallery Ape Premium', 'Premium <<', 'manage_options', 'wpape-gallery-premium', array( $this, 'emptyContent' ) ); } add_submenu_page( WPAPE_GALLERY_EDIT_POST_URL, 'Gallery Ape Options', 'Options', 'manage_options', 'wpape-gallery-settings', array( $this, 'contentSetting' ) ); add_submenu_page( WPAPE_GALLERY_EDIT_POST_URL, 'Gallery Ape Demo', 'Demos', 'manage_options', 'wpape-gallery-demo', array( $this, 'emptyContent' ) ); add_submenu_page( WPAPE_GALLERY_EDIT_POST_URL, 'Gallery Ape Support', 'Support', 'manage_options', 'wpape-gallery-support'.(WPAPE_GALLERY_PREMIUM?'-premium':''), array( $this, 'emptyContent' ) ); } public function emptyContent(){} public function menuRedirect(){ if( isset($_GET['post_type']) && $_GET['post_type']== WPAPE_GALLERY_POST && isset($_GET['page']) ){ if( $_GET['page']=='wpape-gallery-support-premium' ){ wp_redirect( "https://wpape.net/open.php?type=gallery&action=supportPremium" ); exit(); } if( $_GET['page']=='wpape-gallery-support' ){ wp_redirect( "https://wpape.net/open.php?type=gallery&action=support" ); exit(); } if( $_GET['page']=='wpape-gallery-demo' ){ wp_redirect( "https://wpape.net/open.php?type=gallery&action=demo" ); exit; } if( $_GET['page']=='wpape-gallery-premium' ){ wp_redirect( "https://wpape.net/open.php?type=gallery&action=premium" ); exit; } } } public function contentSetting(){ apeGalleryHelper::load('setting.php'); } } $menuAdmin = new wpApeGalleryAdminMenuClass();