| 1 |
<?php |
| 2 |
/** |
| 3 |
* The core plugin class. |
| 4 |
* |
| 5 |
* This is used to define internationalization, admin-specific hooks, and |
| 6 |
* public-facing site hooks. |
| 7 |
* |
| 8 |
* Also maintains the unique identifier of this plugin as well as the current |
| 9 |
* version of the plugin. |
| 10 |
* |
| 11 |
* @link https://smartpostshow.com/ |
| 12 |
* @since 2.2.0 |
| 13 |
* |
| 14 |
* @package Smart_Post_Show |
| 15 |
* @subpackage Smart_Post_Show/includes |
| 16 |
*/ |
| 17 |
|
| 18 |
/** |
| 19 |
* The core plugin class that is used to define internationalization, |
| 20 |
* admin-specific hooks, and public-facing site hooks. |
| 21 |
*/ |
| 22 |
class Smart_Post_Show { |
| 23 |
|
| 24 |
/** |
| 25 |
* The loader that's responsible for maintaining and registering all hooks that power |
| 26 |
* the plugin. |
| 27 |
* |
| 28 |
* @since 2.2.0 |
| 29 |
* @access protected |
| 30 |
* @var Smart_Post_Show_Loader $loader Maintains and registers all hooks for the plugin. |
| 31 |
*/ |
| 32 |
public $loader; |
| 33 |
|
| 34 |
/** |
| 35 |
* The unique identifier of this plugin. |
| 36 |
* |
| 37 |
* @since 2.2.0 |
| 38 |
* @access protected |
| 39 |
* @var string $plugin_name The string used to uniquely identify this plugin. |
| 40 |
*/ |
| 41 |
public $plugin_name = SMART_POST_SHOW_BASENAME; |
| 42 |
|
| 43 |
/** |
| 44 |
* The current version of the plugin. |
| 45 |
* |
| 46 |
* @since 2.2.0 |
| 47 |
* @access protected |
| 48 |
* @var string $version The current version of the plugin. |
| 49 |
*/ |
| 50 |
public $version = SMART_POST_SHOW_VERSION; |
| 51 |
|
| 52 |
/** |
| 53 |
* Define the core functionality of the plugin. |
| 54 |
* |
| 55 |
* Set the plugin name and the plugin version that can be used throughout the plugin. |
| 56 |
* Load the dependencies, define the locale, and set the hooks for the admin area and |
| 57 |
* the public-facing side of the site. |
| 58 |
* |
| 59 |
* @since 2.2.0 |
| 60 |
*/ |
| 61 |
public function __construct() { |
| 62 |
$this->define_constants(); |
| 63 |
$this->load_dependencies(); |
| 64 |
$this->define_common_hooks(); |
| 65 |
$this->define_admin_hooks(); |
| 66 |
$this->define_public_hooks(); |
| 67 |
$this->set_locale(); |
| 68 |
} |
| 69 |
/** |
| 70 |
* Define constant if not already set |
| 71 |
* |
| 72 |
* @since 2.2.0 |
| 73 |
* |
| 74 |
* @param string $name Define constant. |
| 75 |
* @param string|bool $value Define constant. |
| 76 |
*/ |
| 77 |
public function define( $name, $value ) { |
| 78 |
if ( ! defined( $name ) ) { |
| 79 |
define( $name, $value ); |
| 80 |
} |
| 81 |
} |
| 82 |
|
| 83 |
/** |
| 84 |
* Define constants |
| 85 |
* |
| 86 |
* @since 2.2.0 |
| 87 |
*/ |
| 88 |
public function define_constants() { |
| 89 |
$this->define( 'SP_PC_VERSION', $this->version ); |
| 90 |
$this->define( 'SP_PC_PLUGIN_NAME', $this->plugin_name ); |
| 91 |
$this->define( 'SP_PC_PATH', plugin_dir_path( dirname( __FILE__ ) ) ); |
| 92 |
$this->define( 'SP_PC_TEMPLATE_PATH', plugin_dir_path( dirname( __FILE__ ) ) . 'public/template/' ); |
| 93 |
$this->define( 'SP_PC_URL', plugin_dir_url( dirname( __FILE__ ) ) ); |
| 94 |
$this->define( 'SMART_POST_SHOW_BASENAME', SMART_POST_SHOW_BASENAME ); |
| 95 |
} |
| 96 |
|
| 97 |
/** |
| 98 |
* Load the required dependencies for this plugin. |
| 99 |
* |
| 100 |
* Include the following files that make up the plugin: |
| 101 |
* |
| 102 |
* - Smart_Post_Show_Loader. Orchestrates the hooks of the plugin. |
| 103 |
* - Smart_Post_Show_i18n. Defines internationalization functionality. |
| 104 |
* - Smart_Post_Show_Admin. Defines all hooks for the admin area. |
| 105 |
* - Smart_Post_Show_Public. Defines all hooks for the public side of the site. |
| 106 |
* - Smart_Post_Show_Public. Defines all hooks for the public side of the site. |
| 107 |
* |
| 108 |
* Create an instance of the loader which will be used to register the hooks |
| 109 |
* with WordPress. |
| 110 |
* |
| 111 |
* @since 2.2.0 |
| 112 |
* @access private |
| 113 |
*/ |
| 114 |
private function load_dependencies() { |
| 115 |
|
| 116 |
/** |
| 117 |
* The class responsible for orchestrating the actions and filters of the |
| 118 |
* core plugin. |
| 119 |
*/ |
| 120 |
require_once SP_PC_PATH . 'includes/class-smart-post-show-loader.php'; |
| 121 |
$this->loader = new Smart_Post_Show_Loader(); |
| 122 |
|
| 123 |
/** |
| 124 |
* The class responsible for defining internationalization functionality |
| 125 |
* of the plugin. |
| 126 |
*/ |
| 127 |
require_once SP_PC_PATH . 'includes/class-smart-post-show-i18n.php'; |
| 128 |
|
| 129 |
/** |
| 130 |
* The class responsible for defining internationalization functionality |
| 131 |
* of the plugin. |
| 132 |
*/ |
| 133 |
require_once SP_PC_PATH . 'includes/class-smart-post-show-post-types.php'; |
| 134 |
|
| 135 |
/** |
| 136 |
* The class responsible for updates functionality of the plugin. |
| 137 |
*/ |
| 138 |
require_once SP_PC_PATH . 'includes/class-smart-post-show-updates.php'; |
| 139 |
|
| 140 |
/** |
| 141 |
* The class responsible for defining all actions that occur in the admin area. |
| 142 |
*/ |
| 143 |
require_once SP_PC_PATH . 'admin/class-smart-post-show-admin.php'; |
| 144 |
|
| 145 |
/** |
| 146 |
* The class responsible for defining metabox setup that occur in the admin area. |
| 147 |
*/ |
| 148 |
require_once SP_PC_PATH . '/admin/views/sp-framework/classes/setup.class.php'; |
| 149 |
|
| 150 |
/** |
| 151 |
* The class responsible for defining all actions that occur in the public-facing |
| 152 |
* side of the site. |
| 153 |
*/ |
| 154 |
require_once SP_PC_PATH . 'public/class-smart-post-show-public.php'; |
| 155 |
|
| 156 |
/** |
| 157 |
* The class responsible for review notice. |
| 158 |
*/ |
| 159 |
require_once SP_PC_PATH . 'admin/views/notices/review.php'; |
| 160 |
|
| 161 |
} |
| 162 |
|
| 163 |
/** |
| 164 |
* Define the locale for this plugin for internationalization. |
| 165 |
* |
| 166 |
* Uses the Smart_Post_Show_i18n class in order to set the domain and to register the hook |
| 167 |
* with WordPress. |
| 168 |
* |
| 169 |
* @since 2.2.0 |
| 170 |
* @access private |
| 171 |
*/ |
| 172 |
private function set_locale() { |
| 173 |
|
| 174 |
$plugin_i18n = new Smart_Post_Show_i18n(); |
| 175 |
|
| 176 |
$this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' ); |
| 177 |
|
| 178 |
} |
| 179 |
|
| 180 |
/** |
| 181 |
* Register common hooks. |
| 182 |
* |
| 183 |
* @since 2.2.0 |
| 184 |
* @access private |
| 185 |
*/ |
| 186 |
private function define_common_hooks() { |
| 187 |
$common_hooks = new Smart_Post_Show_Post_Type( SP_PC_PLUGIN_NAME, SP_PC_VERSION ); |
| 188 |
$this->loader->add_action( 'init', $common_hooks, 'register_carousel_post_type', 10 ); |
| 189 |
} |
| 190 |
|
| 191 |
/** |
| 192 |
* Register all of the hooks related to the admin area functionality |
| 193 |
* of the plugin. |
| 194 |
* |
| 195 |
* @since 2.2.0 |
| 196 |
* @access private |
| 197 |
*/ |
| 198 |
private function define_admin_hooks() { |
| 199 |
$plugin_admin = new Smart_Post_Show_Admin( SP_PC_PLUGIN_NAME, SP_PC_VERSION ); |
| 200 |
// Load admin scripts and styles. |
| 201 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' ); |
| 202 |
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' ); |
| 203 |
// Admin custom column. |
| 204 |
$this->loader->add_filter( 'manage_sp_post_carousel_posts_columns', $plugin_admin, 'filter_carousel_admin_column' ); |
| 205 |
$this->loader->add_action( 'manage_sp_post_carousel_posts_custom_column', $plugin_admin, 'display_carousel_admin_fields', 10, 2 ); |
| 206 |
|
| 207 |
$this->loader->add_filter( 'plugin_row_meta', $plugin_admin, 'after_pcp_row_meta', 10, 4 ); |
| 208 |
// Post save and update messages. |
| 209 |
$this->loader->add_filter( 'post_updated_messages', $plugin_admin, 'sppcp_update', 10, 1 ); |
| 210 |
// Help Page. |
| 211 |
$help_menu = new SPS_Help(); |
| 212 |
$this->loader->add_action( 'admin_menu', $help_menu, 'help_page_menu', 25 ); |
| 213 |
// Premium Page. |
| 214 |
$premium_menu = new SPS_Premium(); |
| 215 |
$this->loader->add_action( 'admin_menu', $premium_menu, 'premium_page_menu', 20 ); |
| 216 |
} |
| 217 |
|
| 218 |
/** |
| 219 |
* Register all of the hooks related to the public-facing functionality |
| 220 |
* of the plugin. |
| 221 |
* |
| 222 |
* @since 2.2.0 |
| 223 |
* @access private |
| 224 |
*/ |
| 225 |
private function define_public_hooks() { |
| 226 |
$plugin_public = new Smart_Post_Show_Public( SP_PC_PLUGIN_NAME, SP_PC_VERSION ); |
| 227 |
$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); |
| 228 |
$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); |
| 229 |
} |
| 230 |
|
| 231 |
/** |
| 232 |
* Run the loader to execute all of the hooks with WordPress. |
| 233 |
* |
| 234 |
* @since 2.2.0 |
| 235 |
*/ |
| 236 |
public function run() { |
| 237 |
$this->loader->run(); |
| 238 |
} |
| 239 |
|
| 240 |
/** |
| 241 |
* The name of the plugin used to uniquely identify it within the context of |
| 242 |
* WordPress and to define internationalization functionality. |
| 243 |
* |
| 244 |
* @since 2.2.0 |
| 245 |
* @return string The name of the plugin. |
| 246 |
*/ |
| 247 |
public function get_plugin_name() { |
| 248 |
return $this->plugin_name; |
| 249 |
} |
| 250 |
|
| 251 |
/** |
| 252 |
* The reference to the class that orchestrates the hooks with the plugin. |
| 253 |
* |
| 254 |
* @since 2.2.0 |
| 255 |
* @return Smart_Post_Show_Loader Orchestrates the hooks of the plugin. |
| 256 |
*/ |
| 257 |
public function get_loader() { |
| 258 |
return $this->loader; |
| 259 |
} |
| 260 |
|
| 261 |
/** |
| 262 |
* Retrieve the version number of the plugin. |
| 263 |
* |
| 264 |
* @since 2.2.0 |
| 265 |
* @return string The version number of the plugin. |
| 266 |
*/ |
| 267 |
public function get_version() { |
| 268 |
return $this->version; |
| 269 |
} |
| 270 |
|
| 271 |
} |
| 272 |
|