1 | <?php |
||
29 | class Black_Studio_Touch_Dropdown_Menu { |
||
30 | |||
31 | /** |
||
32 | * The unique identifier of this plugin. |
||
33 | * |
||
34 | * @since 1.0.0 |
||
35 | * @access protected |
||
36 | * @var string $plugin_name The string used to uniquely identify this plugin. |
||
37 | */ |
||
38 | protected $plugin_name; |
||
39 | |||
40 | /** |
||
41 | * The current version of the plugin. |
||
42 | * |
||
43 | * @since 1.0.0 |
||
44 | * @access protected |
||
45 | * @var string $version The current version of the plugin. |
||
46 | */ |
||
47 | protected $version; |
||
48 | |||
49 | /** |
||
50 | * Define the core functionality of the plugin. |
||
51 | * |
||
52 | * Set the plugin name and the plugin version that can be used throughout the plugin. |
||
53 | * Load the dependencies, define the locale, and set the hooks for the Dashboard and |
||
54 | * the public-facing side of the site. |
||
55 | * |
||
56 | * @since 1.0.0 |
||
57 | */ |
||
58 | public function __construct() { |
||
66 | |||
67 | /** |
||
68 | * The name of the plugin used to uniquely identify it within the context of |
||
69 | * WordPress and to define internationalization functionality. |
||
70 | * |
||
71 | * @since 1.0.0 |
||
72 | * @return string The name of the plugin. |
||
73 | */ |
||
74 | public function get_plugin_name() { |
||
77 | |||
78 | /** |
||
79 | * Retrieve the version number of the plugin. |
||
80 | * |
||
81 | * @since 1.0.0 |
||
82 | * @return string The version number of the plugin. |
||
83 | */ |
||
84 | public function get_version() { |
||
87 | |||
88 | /** |
||
89 | * Register the script for the public-facing side of the site. |
||
90 | * |
||
91 | * @since 1.0.0 |
||
92 | */ |
||
93 | public function enqueue_scripts() { |
||
111 | |||
112 | } |