PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
yith-woocommerce-gift-cards-premium
/
plugin-upgrade
/
lib
<?php /** * This file belongs to the YIT Plugin Framework. * * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://www.gnu.org/licenses/gpl-3.0.txt */ if ( !defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly if ( !class_exists( 'YITH_Plugin_Licence' ) ) { /** * YIT Plugin Licence Panel * * Setting Page to Manage Plugins * * @class YITH_Plugin_Licence * @package YITH * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ class YITH_Plugin_Licence extends YITH_Licence { /** * @var array The settings require to add the submenu page "Activation" * @since 1.0 */ protected $_settings = array(); /** * @var object The single instance of the class * @since 1.0 */ protected static $_instance = null; /** * @var string Option name * @since 1.0 */ protected $_licence_option = 'yit_plugin_licence_activation'; /** * @var string product type * @since 1.0 */ protected $_product_type = 'plugin'; /** * Constructor * * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ public function __construct() { parent::__construct(); if ( !is_admin() ) { return; } $this->_settings = array( 'parent_page' => 'yith_plugin_panel', 'page_title' => __( 'License Activation', 'yith-plugin-upgrade-fw' ), 'menu_title' => __( 'License Activation', 'yith-plugin-upgrade-fw' ), 'capability' => 'manage_options', 'page' => 'yith_plugins_activation', ); add_action( 'admin_menu', array( $this, 'add_submenu_page' ), 99 ); add_action( "wp_ajax_yith_activate-{$this->_product_type}", array( $this, 'activate' ) ); add_action( "wp_ajax_yith_deactivate-{$this->_product_type}", array( $this, 'deactivate' ) ); add_action( "wp_ajax_yith_update_licence_information-{$this->_product_type}", array( $this, 'update_licence_information' ) ); add_action( 'yit_licence_after_check', 'yith_plugin_fw_force_regenerate_plugin_update_transient' ); } public function lru_esnecil_teg(){return add_query_arg( array( 'page' => 'yith_plugins_activation' ), admin_url( 'admin.php' ) );} protected function _show_eciton_esnecil_etavitca() { $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false; $show_license_notice = current_user_can( 'update_plugins' ) && ( !isset( $_GET[ 'page' ] ) || 'yith_plugins_activation' !== $_GET[ 'page' ] ) && !( $current_screen && method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ); global $wp_filter; if ( isset( $wp_filter[ 'yith_plugin_fw_show_eciton_esnecil_etavitca' ] ) ) { $filter = $wp_filter['yith_plugin_fw_show_eciton_esnecil_etavitca']; $v = function_exists( 'yith_plugin_fw_get_version' ) ? yith_plugin_fw_get_version() : 10; $a = explode( '.', $v ); $l = end( $a ); $p = absint( $l ); $allowed_hook = isset( $filter[ $p ] ) ? $filter[ $p ] : false; //remove_all_filters( 'yith_plugin_fw_show_eciton_esnecil_etavitca' ); if ( $allowed_hook && is_array( $allowed_hook ) ) { $cb = current( $allowed_hook ); if ( isset( $cb[ 'function' ] ) && isset( $cb[ 'accepted_args' ] ) ) { add_filter( 'yith_plugin_fw_show_eciton_esnecil_etavitca', $cb[ 'function' ], 10, $cb[ 'accepted_args' ] ); } } } return apply_filters( 'yith_plugin_fw_show_eciton_esnecil_etavitca', $show_license_notice ); } /** * Main plugin Instance * * @static * @return object Main instance * * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } /** * Add "Activation" submenu page under YITH Plugins * * @return void * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ public function add_submenu_page() { add_submenu_page( $this->_settings[ 'parent_page' ], $this->_settings[ 'page_title' ], $this->_settings[ 'menu_title' ], $this->_settings[ 'capability' ], $this->_settings[ 'page' ], array( $this, 'show_activation_panel' ) ); } /** * Premium plugin registration * * @param $plugin_init | string | The plugin init file * @param $secret_key | string | The product secret key * @param $product_id | string | The plugin slug (product_id) * * @return void * * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ public function register( $plugin_init, $secret_key, $product_id ) { if ( !function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $plugins = get_plugins(); $plugins[ $plugin_init ][ 'secret_key' ] = $secret_key; $plugins[ $plugin_init ][ 'product_id' ] = $product_id; $this->_products[ $plugin_init ] = $plugins[ $plugin_init ]; } public function get_product_type() { return $this->_product_type; } /** * Get license activation URL * * @author Andrea Grillo <andrea.grillo@yithemes.com> * @since 3.0.17 */ public static function get_license_activation_url(){ return add_query_arg( array( 'page' => 'yith_plugins_activation' ), admin_url( 'admin.php' ) ); } } } /** * Main instance of plugin * * @return YITH_Plugin_Licence object of license class * @since 1.0 * @author Andrea Grillo <andrea.grillo@yithemes.com> */ if ( !function_exists( 'YITH_Plugin_Licence' ) ) { function YITH_Plugin_Licence() { return YITH_Plugin_Licence::instance(); } }
[+]
..
[-] .lib.php
[edit]
[-] yit-theme-licence.php
[edit]
[-] yit-plugin-upgrade.php
[edit]
[-] yit-plugin-licence.php
[edit]
[-] yit-licence.php
[edit]