2014-04-09 23:22:44 +03:00
|
|
|
<?php
|
2014-05-01 05:54:00 +03:00
|
|
|
|
2014-04-09 23:22:44 +03:00
|
|
|
/**
|
2014-05-03 22:06:38 +03:00
|
|
|
* Define a short description for what this class does (no period)
|
2014-04-09 23:22:44 +03:00
|
|
|
*
|
2014-05-03 22:06:38 +03:00
|
|
|
* @package Plugin_Name
|
|
|
|
* @subpackage Plugin_Name/admin
|
|
|
|
* @author Your Name <email@example.com>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link http://example.com
|
|
|
|
* @copyright 2014 Your Name or Company Name
|
|
|
|
* @since 1.0.0
|
2014-04-09 23:22:44 +03:00
|
|
|
*/
|
|
|
|
|
2014-05-01 05:54:00 +03:00
|
|
|
/**
|
|
|
|
* Define a short description for what this class does.
|
|
|
|
*
|
|
|
|
* Define a longer description for the purpose of this class.
|
|
|
|
*
|
2014-05-03 22:06:38 +03:00
|
|
|
* @package Plugin_Name
|
|
|
|
* @subpackage Plugin_Name/admin
|
|
|
|
* @author Your Name <email@example.com>
|
2014-05-01 05:54:00 +03:00
|
|
|
*/
|
2014-04-09 23:22:44 +03:00
|
|
|
class Plugin_Name_Admin {
|
|
|
|
|
2014-05-01 05:54:00 +03:00
|
|
|
/**
|
|
|
|
* Short description. (use period)
|
|
|
|
*
|
|
|
|
* Long description.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2014-05-02 06:43:07 +03:00
|
|
|
public function enqueue_styles() {
|
2014-05-01 05:54:00 +03: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-05-02 06:43:07 +03:00
|
|
|
wp_enqueue_style( 'plugin-name-admin', plugin_dir_url( __FILE__ ) . 'css/plugin-name-admin.css', array(), PLUGIN_NAME_VER, 'all' );
|
|
|
|
|
2014-05-01 05:54:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Short description. (use period)
|
|
|
|
*
|
|
|
|
* Long description.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2014-05-02 06:43:07 +03:00
|
|
|
public function enqueue_scripts() {
|
2014-05-01 05:54:00 +03: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-05-02 06:43:07 +03:00
|
|
|
wp_enqueue_script( 'plugin-name-admin', plugin_dir_url( __FILE__ ) . 'js/plugin-name-admin.js', array( 'jquery' ), PLUGIN_NAME_VER, FALSE );
|
2014-05-01 05:54:00 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-26 01:39:31 +03:00
|
|
|
}
|