<?php /** * Options Page * * @package Quick_Featured_Images_Admin * @author Martin Stehle <*****@*****.**> * @license GPL-2.0+ * @link http://wordpress.org/plugins/quick-featured-images/ * @copyright 2014 */ $qfi_tools_instance = Quick_Featured_Images_Tools::get_instance(); $qfi_defaults_instance = Quick_Featured_Images_Defaults::get_instance(); $qfi_settings_instance = Quick_Featured_Images_Settings::get_instance(); ?> <h3><?php _e('Manage featured images in a quick way', $this->plugin_slug); ?> </h3> <p><?php echo $this->get_page_description(); ?> </p> <ul> <?php /** * Bulk Edit Page Item * */ ?>
/** * Return an instance of this class. * * @since 1.0.0 * * @return object A single instance of this class. */ public static function get_instance() { /* * @TODO : * * - Uncomment following lines if the admin class should only be available for super admins */ /* if( ! is_super_admin() ) { return; } */ // If the single instance hasn't been set, set it now. if (null == self::$instance) { self::$instance = new self(); } return self::$instance; }