Esempio n. 1
0
 /**
  * Initialize the plugin by loading admin scripts & styles and adding a
  * settings page and menu.
  *
  * @since     1.0.0
  */
 function __construct()
 {
     /*
      * @TODO :
      *
      * - Uncomment following lines if the admin class should only be available for super admins
      */
     /* if( ! is_super_admin() ) {
                return;
        } */
     /*
      * Call $plugin_slug from public plugin class.
      *
      * @TODO:
      *
      * - Rename "Plugin_Name" to the name of your initial plugin class
      *
      */
     $plugin = WP_Wpefi::get_instance();
     //We are using slug also for options name
     $this->plugin_slug = $plugin->get_plugin_slug();
     $this->options_name = $this->plugin_slug . '_settings';
     $this->sections['general'] = __('Export', $this->plugin_slug);
     $this->WPB_PLUGIN_NAME = 'Export Featured Images';
     $this->WPB_PLUGIN_VERSION = WPEFI_VERSION;
     $this->WPB_SLUG = 'export-featured-images';
     $this->WPB_PLUGIN_URL = WPEFI_PLUGIN_URL;
     $this->WPB_PREFIX = $this->plugin_slug;
     // Load admin style sheet and JavaScript.
     #add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
     #add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) );
     // Add the options page and menu item.
     add_action('admin_menu', array($this, 'add_plugin_admin_menu'));
     // Add an action link pointing to the options page.
     $plugin_basename = plugin_basename(plugin_dir_path(__DIR__) . $this->plugin_slug . '.php');
     add_filter('plugin_action_links_' . $plugin_basename, array($this, 'add_action_links'));
     add_action('init', array($this, 'handle_export'));
     parent::__construct();
 }
Esempio n. 2
0
 /**
  * Return an instance of this class.
  *
  * @since     1.0.0
  *
  * @return    object    A single instance of this class.
  */
 public static function get_instance()
 {
     // If the single instance hasn't been set, set it now.
     if (null == self::$instance) {
         self::$instance = new self();
         self::$instance->includes();
     }
     return self::$instance;
 }