/** * Constructor */ public function __construct() { $this->input = new PMAI_Input(); $this->input->addFilter('trim'); $this->errors = new WP_Error(); $this->init(); }
function pmai_admin_notices() { // notify user if history folder is not writable if (!class_exists('PMXI_Plugin')) { ?> <div class="error"><p> <?php printf(__('<b>%s Plugin</b>: WP All Import must be installed. Free edition of WP All Import at <a href="http://wordpress.org/plugins/wp-all-import/" target="_blank">http://wordpress.org/plugins/wp-all-import/</a> and the paid edition at <a href="http://www.wpallimport.com/">http://www.wpallimport.com/</a>', 'PMAI_Plugin'), PMAI_Plugin::getInstance()->getName()); ?> </p></div> <?php deactivate_plugins(PMAI_ROOT_DIR . '/wpai-acf-add-on.php'); } if (class_exists('PMXI_Plugin') and (version_compare(PMXI_VERSION, '4.1.1') < 0 and PMXI_EDITION == 'paid' or version_compare(PMXI_VERSION, '3.2.3') <= 0 and PMXI_EDITION == 'free')) { ?> <div class="error"><p> <?php printf(__('<b>%s Plugin</b>: Please update your WP All Import to the latest version', 'pmai_plugin'), PMAI_Plugin::getInstance()->getName()); ?> </p></div> <?php deactivate_plugins(PMAI_ROOT_DIR . '/wpai-acf-add-on.php'); } if (!class_exists('acf')) { ?> <div class="error"><p> <?php printf(__('<b>%s Plugin</b>: <a target="_blank" href="http://wordpress.org/plugins/advanced-custom-fields/">Advanced Custom Fields</a> must be installed', 'pmai_plugin'), PMAI_Plugin::getInstance()->getName()); ?> </p></div> <?php deactivate_plugins(PMAI_ROOT_DIR . '/wpai-acf-add-on.php'); } $input = new PMAI_Input(); $messages = $input->get('pmai_nt', array()); if ($messages) { is_array($messages) or $messages = array($messages); foreach ($messages as $type => $m) { in_array((string) $type, array('updated', 'error')) or $type = 'updated'; ?> <div class="<?php echo $type; ?> "><p><?php echo $m; ?> </p></div> <?php } } }
/** * pre-dispatching logic for admin page controllers */ public function __adminInit() { $input = new PMAI_Input(); $page = strtolower($input->getpost('page', '')); if (preg_match('%^' . preg_quote(str_replace('_', '-', self::PREFIX), '%') . '([\w-]+)$%', $page)) { $this->adminDispatcher($page, strtolower($input->getpost('action', 'index'))); } }