/var/www/html/wp-content/plugins/expand-maker/classes/

OS : Linux

PHP Version : 7.4.33

Software : Apache/2.4.6 (CentOS) PHP/7.4.33

Information System : YRM_FREE_PKG) { require_once(YRM_CLASSES.'FiltersPro.php'); require_once(YRM_CLASSES.'AccordionFiltersPro.php'); require_once(YRM_CLASSES.'ReadMoreContentManager.php'); require_once(YRM_FILES.'ReadMoreAdminHelperPro.php'); require_once YRM_ADMIN_CLASSES.'Updates.php'; } require_once(YRM_ADMIN_CLASSES.'Tickbox.php'); require_once(YRM_CLASSES.'ReadMoreFilters.php'); require_once(YRM_FILES.'TypesNavBar.php'); require_once(YRM_FILES.'ReadMoreAdminHelper.php'); require_once(YRM_FILES.'ExtensionRegister.php'); require_once(YRM_FILES.'ShowReviewNotice.php'); require_once(YRM_FILES."ReadMoreAdminPost.php"); require_once(YRM_FILES."MultipleChoiceButton.php"); require_once(YRM_CLASSES."ReadMoreInstall.php"); require_once(YRM_CLASSES."ReadMoreData.php"); require_once(YRM_CLASSES."ReadMore.php"); require_once(YRM_CLASSES."ReadMoreFunctions.php"); require_once(YRM_CSS."ReadMoreStyles.php"); require_once(YRM_JAVASCRIPT_PATH."javascript.php"); require_once(YRM_CLASSES."ReadMoreIncludeManager.php"); require_once(YRM_FILES.'ReadMoreActions.php'); require_once(YRM_ADMIN_BUILDER_CLASSES.'DisplayConditionBuilder.php'); require_once(YRM_FILES.'RadMoreAjax.php'); require_once(YRM_CLASSES.'ReadMorePages.php'); if(YRM_PKG > YRM_FREE_PKG) { require_once(YRM_FILES."ReadMoreAjaxPro.php"); } add_action('init', array($this, 'initAction'), 1, 1); $pagesObj = new ReadMorePages(); $readMoreData = new ReadMoreData(); $functionsObj = new ReadMoreFunctions(); $this->pagesObj = $pagesObj; $pagesObj->readMoreDataObj = $readMoreData; $pagesObj->functionsObj = $functionsObj; $this->actions(); } public function initAction() { YrmConfig::typePaths(); add_action('admin_footer', array($this, 'before_deactivate_expander')); } public function before_deactivate_expander() { wp_enqueue_style('before-deactivate-expander-css', YRM_CSS_URL.'deactivationSurvey.css'); wp_enqueue_script('before-deactivate-expander-js', YRM_JAVASCRIPT.'/deactivationSurvey.js', array('jquery')); wp_localize_script('before-deactivate-expander-js', 'EXPANDER_DEACTIVATE_ARGS', array( 'nonce' => wp_create_nonce('readMoreAjaxNonce'), 'areYouSure' => __('Are you sure?', YRM_LANG) )); require_once YRM_VIEWS.'uninstallSurveyPopup.php'; } public function activate() { if (YRM_PKG > YRM_FREE_PKG) { $pluginName = YRM_PLUGIN_PREF; $options = array( 'licence' => array( 'key' => YRM_PRO_KEY, 'storeURL' => YRM_STORE_URL, 'file' => YRM_PLUGIN_PREF, 'itemId' => YRM_VERSION_ITEM_ID, 'itemName' => __(YRM_ITEM_LABEL, YRM_LANG), 'author' => 'Adam', 'boxLabel' => __('Read more pro version license', YRM_LANG) ) ); ExtensionRegister::register($pluginName, $options); } ReadMoreInstall::install(); } public function deactivate() { if (YRM_PKG > YRM_FREE_PKG) { $pluginName = YRM_PLUGIN_PREF; ExtensionRegister::remove($pluginName); } delete_option('yrm_redirect'); } public function uninstall() { ReadMoreInstall::uninstall(); } public function shortCode() { if (is_admin()) { return false; } require_once(YRM_CLASSES."ReadMoreShortCode.php"); $shortCodeObj = new ReadMoreShortCode(); } public function enqueueScripts() { } public function readMoreMainMenu() { $this->pagesObj->mainPage(); } public function addNewButton() { $this->pagesObj->addNewButtons(); } public function addNewPage() { $this->pagesObj->addNewPage(); } public function morePlugins() { $this->pagesObj->morePlugins(); } public function help() { $this->pagesObj->help(); } public function expmAdminMenu() { $selectedRoles = array(); $userRoles = get_option('yrm-user-roles'); if(!empty($userRoles)) { $selectedRoles = get_option('yrm-user-roles'); } $currentRole = ReadMoreData::getCurrentUserRole(); if ($currentRole != 'administrator') { if (!in_array(ReadMoreData::getCurrentUserRole(), $selectedRoles)) { return false; } } $subsMenuLabel = ''; $subsExtensionAvailable = apply_filters('yrmSubsExtensionAvailable', 0); if (!$subsExtensionAvailable) { $subsMenuLabel = ' '.__('Pro Extension', YRM_LANG).''; } add_menu_page(__('Read More', YRM_LANG), __('Read More', YRM_LANG), 'read', 'readMore', array($this, 'readMoreMainMenu')); add_submenu_page('readMore', __('Add New Type', YRM_LANG), __('Add New Type', YRM_LANG), 'read','addNew', array($this,'addNewPage')); add_submenu_page('readMore', __('Add New', YRM_LANG), __('Add New', YRM_LANG), 'read','button', array($this,'addNewButton')); add_submenu_page('readMore', __('Find and Replace', YRM_LANG), __('Find and Replace', YRM_LANG), 'read', YRM_FIND_PAGE, array($this->pagesObj, 'findAndReplace')); add_submenu_page('readMore', __('Subscribers', YRM_LANG), __('Subscribers', YRM_LANG).$subsMenuLabel, 'read', YRM_SUBSCRIBERS_PAGE, array($this, 'yrmSubscribers')); add_submenu_page('readMore', __('Help', YRM_LANG), __('Help', YRM_LANG), 'read','rmmore-help', array($this,'help')); add_submenu_page('readMore', __('More Plugins', YRM_LANG), __('More Plugins', YRM_LANG), 'read','rmmore-plugins', array($this,'morePlugins')); add_submenu_page('readMore', __('Video Tutorials', YRM_LANG), __('Video Tutorials', YRM_LANG), 'read', YRM_VIDEO_TUTORIAL_KEY, array($this->pagesObj, 'videoTutorials')); add_submenu_page('readMore', __('Support', YRM_LANG), __('Support', YRM_LANG), 'read', YRM_SUPPORT_MENU_KEY, array($this->pagesObj, 'support')); add_submenu_page('readMore', __('Settings', YRM_LANG), __('Settings', YRM_LANG), 'read','rmmore-settings', array($this->pagesObj, 'settings')); if (!get_option('yrm-hid-find-and-replace-menu')) { add_menu_page(__('Find and Replace', YRM_LANG), __('Find and Replace', YRM_LANG), 'read', YRM_FIND_PAGE, array($this->pagesObj, 'findAndReplace')); } if (!get_option('yrm-hid-accordion-menu')) { add_menu_page(__('Accordion', YRM_LANG), __('Accordion', YRM_LANG), 'read', YRM_ACCORDION_PAGE, array($this->pagesObj, 'accordionBuilder')); } } public function actions() { $actions = new ReadMoreActions(); add_action("admin_menu", array($this, 'expmAdminMenu'), 2,2); add_action('init', array($this, 'shortCode')); add_action('admin_init', array($this, 'adminInit')); add_action('wpmu_new_blog', array($this, 'activate'), 10, 6); register_activation_hook(WP_PLUGIN_DIR.'/'.YRM_PLUGIN_PREF, array($this, 'activate')); register_deactivation_hook(WP_PLUGIN_DIR.'/'.YRM_PLUGIN_PREF, array($this, 'deactivate')); register_uninstall_hook(WP_PLUGIN_DIR.'/'.YRM_PLUGIN_PREF, array('ExpMaker', 'uninstall')); add_action('admin_post_update_data', array('DataProcessing', 'expanderUpdateData')); add_action('plugins_loaded', array($this, 'yrmPluginLoaded')); add_action('admin_head', array($this, 'adminHead')); } public function adminInit() { $this->pluginRedirect(); $this->checkVersionsDiff(); } private function checkVersionsDiff() { $prevVersion = get_option('EXPM_PREV_VERSION'); if (!$prevVersion || version_compare($prevVersion, YRM_VERSION, '<=')) { ReadMoreInstall::install(); } } private function pluginRedirect() { if (!get_option('yrm_redirect')) { update_option('yrm_redirect', 1); exit(wp_redirect(admin_url().'admin.php?page=readMore')); } } public function adminHead() { echo ""; } public function yrmPluginLoaded() { load_plugin_textdomain(YRM_LANG, false, YRM_FOLDER_NAME.'/lang/'); $versionYrm = get_option('EXPM_VERSION'); if(!$versionYrm || $versionYrm < 1.21 ) { update_option('EXPM_VERSION', EXPM_VERSION); ReadMoreInstall::install(); ReadMoreInstall::udateToNewVersion(); } } public function yrmSubscribers() { } }