2014-04-09 16:22:44 -04:00
|
|
|
<?php
|
2014-04-30 22:54:00 -04:00
|
|
|
|
2014-04-09 16:22:44 -04:00
|
|
|
/**
|
2014-07-30 15:16:32 -04:00
|
|
|
* The dashboard-specific functionality of the plugin.
|
2014-04-09 16:22:44 -04:00
|
|
|
*
|
2014-05-03 15:06:38 -04:00
|
|
|
* @link http://example.com
|
|
|
|
* @since 1.0.0
|
2014-07-30 15:16:32 -04:00
|
|
|
*
|
|
|
|
* @package Plugin_Name
|
|
|
|
* @subpackage Plugin_Name/includes
|
2014-04-09 16:22:44 -04:00
|
|
|
*/
|
|
|
|
|
2014-04-30 22:54:00 -04:00
|
|
|
/**
|
2014-07-30 15:16:32 -04:00
|
|
|
* The dashboard-specific functionality of the plugin.
|
2014-04-30 22:54:00 -04:00
|
|
|
*
|
2014-07-30 15:16:32 -04:00
|
|
|
* Defines the plugin name, version, and two examples hooks for how to
|
|
|
|
* enqueue the dashboard-specific stylesheet and JavaScript.
|
2014-04-30 22:54:00 -04:00
|
|
|
*
|
2014-05-03 15:06:38 -04:00
|
|
|
* @package Plugin_Name
|
|
|
|
* @subpackage Plugin_Name/admin
|
|
|
|
* @author Your Name <email@example.com>
|
2014-04-30 22:54:00 -04:00
|
|
|
*/
|
2014-05-08 18:09:10 -04:00
|
|
|
class Plugin_Name_Admin {
|
|
|
|
|
2014-07-29 17:09:55 -04:00
|
|
|
/**
|
|
|
|
* The ID of this plugin.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @access private
|
2014-10-07 16:43:55 -04:00
|
|
|
* @var string $plugin_name The ID of this plugin.
|
2014-07-29 17:09:55 -04:00
|
|
|
*/
|
2014-10-07 16:43:55 -04:00
|
|
|
private $plugin_name;
|
2014-07-29 17:09:55 -04:00
|
|
|
|
2014-06-26 16:19:57 -04:00
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* The version of this plugin.
|
2014-06-26 16:19:57 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @access private
|
2014-07-29 16:56:18 -04:00
|
|
|
* @var string $version The current version of this plugin.
|
2014-06-26 16:19:57 -04:00
|
|
|
*/
|
2014-05-08 18:09:10 -04:00
|
|
|
private $version;
|
|
|
|
|
2014-06-26 16:19:57 -04:00
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* Initialize the class and set its properties.
|
2014-06-26 16:19:57 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
2014-10-07 16:43:55 -04:00
|
|
|
* @var string $plugin_name The name of this plugin.
|
2014-07-29 16:56:18 -04:00
|
|
|
* @var string $version The version of this plugin.
|
2014-06-26 16:19:57 -04:00
|
|
|
*/
|
2014-10-07 16:43:55 -04:00
|
|
|
public function __construct( $plugin_name, $version ) {
|
2014-07-29 17:09:55 -04:00
|
|
|
|
2014-10-07 16:43:55 -04:00
|
|
|
$this->plugin_name = $plugin_name;
|
2014-05-08 18:09:10 -04:00
|
|
|
$this->version = $version;
|
2014-07-29 17:09:55 -04:00
|
|
|
|
2014-05-08 18:09:10 -04:00
|
|
|
}
|
2014-04-09 16:22:44 -04:00
|
|
|
|
2014-04-30 22:54:00 -04:00
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* Register the stylesheets for the Dashboard.
|
2014-04-30 22:54:00 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2014-05-01 23:43:07 -04:00
|
|
|
public function enqueue_styles() {
|
2014-04-30 22:54:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is provided for demonstration purposes only.
|
|
|
|
*
|
|
|
|
* An instance of this class should be passed to the run() function
|
|
|
|
* defined in Plugin_Name_Admin_Loader as all of the hooks are defined
|
|
|
|
* in that particular class.
|
|
|
|
*
|
|
|
|
* The Plugin_Name_Admin_Loader will then create the relationship
|
|
|
|
* between the defined hooks and the functions defined in this
|
|
|
|
* class.
|
|
|
|
*/
|
|
|
|
|
2014-10-07 16:43:55 -04:00
|
|
|
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/plugin-name-admin.css', array(), $this->version, 'all' );
|
2014-05-01 23:43:07 -04:00
|
|
|
|
2014-04-30 22:54:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* Register the JavaScript for the dashboard.
|
2014-04-30 22:54:00 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2014-05-01 23:43:07 -04:00
|
|
|
public function enqueue_scripts() {
|
2014-04-30 22:54:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is provided for demonstration purposes only.
|
|
|
|
*
|
|
|
|
* An instance of this class should be passed to the run() function
|
|
|
|
* defined in Plugin_Name_Admin_Loader as all of the hooks are defined
|
|
|
|
* in that particular class.
|
|
|
|
*
|
|
|
|
* The Plugin_Name_Admin_Loader will then create the relationship
|
|
|
|
* between the defined hooks and the functions defined in this
|
|
|
|
* class.
|
|
|
|
*/
|
|
|
|
|
2014-10-07 16:43:55 -04:00
|
|
|
wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/plugin-name-admin.js', array( 'jquery' ), $this->version, false );
|
2014-04-30 22:54:00 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-25 18:39:31 -04:00
|
|
|
}
|