![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/essential-grid/includes/addons/ |
<?php /** * @package Essential_Grid * @author ThemePunch <[email protected]> * @link http://www.themepunch.com/essential/ * @copyright 2023 ThemePunch */ if( !defined( 'ABSPATH') ) exit(); class Essential_Grid_Rightclick_Addon { protected $_handle = 'esg-rightclick-addon'; public function __construct() { } public function get_handle() { return $this->_handle; } /** * addon is missing if original rightclick option still in database * * @return bool */ public function is_missing() { $esg_addons = Essential_Grid_Addons::instance(); $addons = $esg_addons->get_addons_list(); $options = get_option('tp_eg_rightclick', array()); if (empty($options) || !is_array($options) || !isset($options['rightclick-enabled']) || $options['rightclick-enabled'] !== 'true') return false; if (empty($addons[$this->_handle]) || !$addons[$this->_handle]->installed || !$addons[$this->_handle]->active) return true; return false; } /** * check if import key can be processed by addon * * @param array $keys * @return bool */ public function check_import_keys($keys) { return false; } }