2014-04-09 16:22:44 -04:00
|
|
|
<?php
|
2014-04-30 22:54:25 -04:00
|
|
|
|
2014-04-09 16:22:44 -04:00
|
|
|
/**
|
2014-07-30 15:16:32 -04:00
|
|
|
* The public-facing functionality of the plugin.
|
2014-04-09 16:22:44 -04:00
|
|
|
*
|
2014-05-03 15:27:01 -04:00
|
|
|
* @link http://example.com
|
|
|
|
* @since 1.0.0
|
2014-07-30 15:16:32 -04:00
|
|
|
*
|
|
|
|
* @package Plugin_Name
|
2014-10-05 19:36:55 +06:00
|
|
|
* @subpackage Plugin_Name/public
|
2014-04-09 16:22:44 -04:00
|
|
|
*/
|
|
|
|
|
2014-04-30 22:54:25 -04:00
|
|
|
/**
|
2014-07-30 15:16:32 -04:00
|
|
|
* The public-facing functionality of the plugin.
|
2014-04-30 22:54:25 -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:25 -04:00
|
|
|
*
|
2014-05-03 15:27:01 -04:00
|
|
|
* @package Plugin_Name
|
2014-10-05 19:36:55 +06:00
|
|
|
* @subpackage Plugin_Name/public
|
2014-05-03 15:27:01 -04:00
|
|
|
* @author Your Name <email@example.com>
|
2014-04-30 22:54:25 -04:00
|
|
|
*/
|
2014-05-08 18:09:10 -04:00
|
|
|
class Plugin_Name_Public {
|
|
|
|
|
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
|
2015-02-03 11:15:28 -06:00
|
|
|
* @param string $plugin_name The name of the plugin.
|
|
|
|
* @param 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:25 -04:00
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* Register the stylesheets for the public-facing side of the site.
|
2014-04-30 22:54:25 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
2014-05-03 15:27:01 -04:00
|
|
|
public function enqueue_styles() {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is provided for demonstration purposes only.
|
|
|
|
*
|
|
|
|
* An instance of this class should be passed to the run() function
|
2015-01-17 12:45:15 -05:00
|
|
|
* defined in Plugin_Name_Loader as all of the hooks are defined
|
2014-05-03 15:27:01 -04:00
|
|
|
* in that particular class.
|
|
|
|
*
|
2015-01-17 12:45:15 -05:00
|
|
|
* The Plugin_Name_Loader will then create the relationship
|
2014-05-03 15:27:01 -04:00
|
|
|
* 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-public.css', array(), $this->version, 'all' );
|
2014-05-03 15:27:01 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-29 16:56:18 -04:00
|
|
|
* Register the stylesheets for the public-facing side of the site.
|
2014-05-03 15:27:01 -04:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
public function enqueue_scripts() {
|
2014-04-30 22:54:25 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is provided for demonstration purposes only.
|
|
|
|
*
|
|
|
|
* An instance of this class should be passed to the run() function
|
2015-01-17 12:45:15 -05:00
|
|
|
* defined in Plugin_Name_Loader as all of the hooks are defined
|
2014-04-30 22:54:25 -04:00
|
|
|
* in that particular class.
|
|
|
|
*
|
2015-01-17 12:45:15 -05:00
|
|
|
* The Plugin_Name_Loader will then create the relationship
|
2014-04-30 22:54:25 -04:00
|
|
|
* 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-public.js', array( 'jquery' ), $this->version, false );
|
2014-04-30 22:54:25 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-25 18:39:31 -04:00
|
|
|
}
|