/**
	 * Constructor
	 */
	public function __construct()
	{
		$this->id = 'terms-reorganize';
		$this->title = __('Reorganize Terms', 'bulkpress');
		
		// Construct
		parent::__construct();
	}
Exemple #2
0
	/**
	 * Constructor
	 */
	public function __construct()
	{
		$this->id = 'terms-add';
		$this->title = __('Add Terms', 'bulkpress');
		
		// Construct
		parent::__construct();
	}
Exemple #3
0
 /**
  * Constructor
  *
  * @since 0.3
  */
 public function __construct()
 {
     // Construct
     parent::__construct();
     // Tab information
     $this->id = 'posts-add';
     $this->title = __('Add Posts', 'bulkpress');
     // Actions
     add_action('admin_enqueue_scripts', array(&$this, 'scripts'));
 }