PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 2.4.19
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v2.4.19
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 2.3.5 2.3.6 2.4.0 2.4.1 2.4.10 2.4.11 2.4.12 2.4.13 2.4.14 2.4.15 2.4.16 2.4.17 2.4.18 2.4.19 2.4.2 2.4.20 2.4.21 All 88 releases
post-carousel / includes / class-smart-post-show.php

class-smart-post-show.php in Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News 2.4.19, at includes/class-smart-post-show.php

286 lines 8.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 constants
71 *
72 * @since 2.2.0
73 */
74 public function define_constants() {
75 define( 'SP_PC_VERSION', $this->version );
76 define( 'SP_PC_PLUGIN_NAME', $this->plugin_name );
77 define( 'SP_PC_PATH', plugin_dir_path( dirname( __FILE__ ) ) );
78 define( 'SP_PC_TEMPLATE_PATH', plugin_dir_path( dirname( __FILE__ ) ) . 'public/template/' );
79 define( 'SP_PC_URL', plugin_dir_url( dirname( __FILE__ ) ) );
80 }
81
82 /**
83 * Load the required dependencies for this plugin.
84 *
85 * Include the following files that make up the plugin:
86 *
87 * - Smart_Post_Show_Loader. Orchestrates the hooks of the plugin.
88 * - Smart_Post_Show_i18n. Defines internationalization functionality.
89 * - Smart_Post_Show_Admin. Defines all hooks for the admin area.
90 * - Smart_Post_Show_Public. Defines all hooks for the public side of the site.
91 * - Smart_Post_Show_Public. Defines all hooks for the public side of the site.
92 *
93 * Create an instance of the loader which will be used to register the hooks
94 * with WordPress.
95 *
96 * @since 2.2.0
97 * @access private
98 */
99 private function load_dependencies() {
100
101 /**
102 * The class responsible for orchestrating the actions and filters of the
103 * core plugin.
104 */
105 require_once SP_PC_PATH . 'includes/class-smart-post-show-loader.php';
106 $this->loader = new Smart_Post_Show_Loader();
107
108 /**
109 * The class responsible for defining internationalization functionality
110 * of the plugin.
111 */
112 require_once SP_PC_PATH . 'includes/class-smart-post-show-i18n.php';
113
114 /**
115 * The class responsible for defining internationalization functionality
116 * of the plugin.
117 */
118 require_once SP_PC_PATH . 'includes/class-smart-post-show-post-types.php';
119
120 /**
121 * The class responsible for updates functionality of the plugin.
122 */
123 require_once SP_PC_PATH . 'includes/class-smart-post-show-updates.php';
124
125 /**
126 * The class responsible for Export Import functionality of the plugin.
127 */
128 require_once SP_PC_PATH . 'includes/class-smart-post-show-import-export.php';
129
130 /**
131 * The class responsible for defining all actions that occur in the admin area.
132 */
133 require_once SP_PC_PATH . 'admin/class-smart-post-show-admin.php';
134
135 /**
136 * The class responsible for defining metabox setup that occur in the admin area.
137 */
138 require_once SP_PC_PATH . '/admin/views/sp-framework/classes/setup.class.php';
139 require_once SP_PC_PATH . '/public/helpers/sp-pc-output.php';
140 /**
141 * The class responsible for defining all actions that occur in the public-facing
142 * side of the site.
143 */
144 require_once SP_PC_PATH . 'public/class-smart-post-show-public.php';
145 require_once SP_PC_PATH . 'admin/preview/class-spsp-preview.php';
146
147 /**
148 * The class responsible for review notice.
149 */
150 require_once SP_PC_PATH . 'admin/views/notices/review.php';
151
152 // Elementor shortcode addons.
153 require_once ABSPATH . 'wp-admin/includes/plugin.php';
154 if ( ( is_plugin_active( 'elementor/elementor.php' ) || is_plugin_active_for_network( 'elementor/elementor.php' ) ) ) {
155 require_once SP_PC_PATH . 'admin/class-smart-post-show-element-shortcode-addons.php';
156 require_once SP_PC_PATH . 'admin/class-smart-post-show-element-shortcode-addons-deprecated.php';
157 }
158
159 /**
160 * Gutenberg block.
161 */
162 if ( version_compare( $GLOBALS['wp_version'], '5.3', '>=' ) ) {
163 require_once SP_PC_PATH . 'admin/class-smart-post-show-gutenberg-block.php';
164 new Smart_Post_Show_Gutenberg_Block();
165 }
166
167 }
168
169 /**
170 * Define the locale for this plugin for internationalization.
171 *
172 * Uses the Smart_Post_Show_i18n class in order to set the domain and to register the hook
173 * with WordPress.
174 *
175 * @since 2.2.0
176 * @access private
177 */
178 private function set_locale() {
179
180 $plugin_i18n = new Smart_Post_Show_i18n();
181
182 $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
183
184 }
185
186 /**
187 * Register common hooks.
188 *
189 * @since 2.2.0
190 * @access private
191 */
192 private function define_common_hooks() {
193 $common_hooks = new Smart_Post_Show_Post_Type( SP_PC_PLUGIN_NAME, SP_PC_VERSION );
194 $this->loader->add_action( 'init', $common_hooks, 'register_carousel_post_type', 10 );
195 }
196
197 /**
198 * Register all of the hooks related to the admin area functionality
199 * of the plugin.
200 *
201 * @since 2.2.0
202 * @access private
203 */
204 private function define_admin_hooks() {
205 $plugin_admin = new Smart_Post_Show_Admin( SP_PC_PLUGIN_NAME, SP_PC_VERSION );
206 // Load admin scripts and styles.
207 $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
208 $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
209 // Admin custom column.
210 $this->loader->add_filter( 'manage_sp_post_carousel_posts_columns', $plugin_admin, 'filter_carousel_admin_column' );
211 $this->loader->add_action( 'manage_sp_post_carousel_posts_custom_column', $plugin_admin, 'display_carousel_admin_fields', 10, 2 );
212
213 $this->loader->add_filter( 'plugin_row_meta', $plugin_admin, 'after_pcp_row_meta', 10, 4 );
214 // Post save and update messages.
215 $this->loader->add_filter( 'post_updated_messages', $plugin_admin, 'sppcp_update', 10, 1 );
216 // Help Page.
217 $help_menu = new SPS_Help();
218 $this->loader->add_action( 'admin_menu', $help_menu, 'help_page_menu', 20 );
219 // Premium Page.
220 $premium_menu = new SPS_Premium();
221 $this->loader->add_action( 'admin_menu', $premium_menu, 'premium_page_menu', 25 );
222
223 $import_export = new Smart_Post_Show_Import_Export( SP_PC_PLUGIN_NAME, SP_PC_VERSION );
224
225 $this->loader->add_action( 'wp_ajax_pcp_export_shortcodes', $import_export, 'export_shortcodes' );
226 $this->loader->add_action( 'wp_ajax_pcp_import_shortcodes', $import_export, 'import_shortcodes' );
227
228 // after activated plugin redirect to help page.
229 $this->loader->add_action( 'activated_plugin', $plugin_admin, 'redirect_help_page' );
230 }
231
232 /**
233 * Register all of the hooks related to the public-facing functionality
234 * of the plugin.
235 *
236 * @since 2.2.0
237 * @access private
238 */
239 private function define_public_hooks() {
240 $plugin_public = new Smart_Post_Show_Public( SP_PC_PLUGIN_NAME, SP_PC_VERSION );
241 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
242 $this->loader->add_action( 'wp_loaded', $plugin_public, 'register_all_scripts' );
243 }
244
245 /**
246 * Run the loader to execute all of the hooks with WordPress.
247 *
248 * @since 2.2.0
249 */
250 public function run() {
251 $this->loader->run();
252 }
253
254 /**
255 * The name of the plugin used to uniquely identify it within the context of
256 * WordPress and to define internationalization functionality.
257 *
258 * @since 2.2.0
259 * @return string The name of the plugin.
260 */
261 public function get_plugin_name() {
262 return $this->plugin_name;
263 }
264
265 /**
266 * The reference to the class that orchestrates the hooks with the plugin.
267 *
268 * @since 2.2.0
269 * @return Smart_Post_Show_Loader Orchestrates the hooks of the plugin.
270 */
271 public function get_loader() {
272 return $this->loader;
273 }
274
275 /**
276 * Retrieve the version number of the plugin.
277 *
278 * @since 2.2.0
279 * @return string The version number of the plugin.
280 */
281 public function get_version() {
282 return $this->version;
283 }
284
285 }
286