-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.php
390 lines (317 loc) · 9.21 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<?php
namespace ElementorPro;
use ElementorPro\Core\Connect;
use Elementor\Core\Responsive\Files\Frontend as FrontendFile;
use Elementor\Core\Responsive\Responsive;
use Elementor\Utils;
use ElementorPro\Core\Upgrade\Manager as UpgradeManager;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Main class plugin
*/
class Plugin {
/**
* @var Plugin
*/
private static $_instance;
/**
* @var Manager
*/
public $modules_manager;
/**
* @var UpgradeManager
*/
public $upgrade;
private $classes_aliases = [
'ElementorPro\Modules\PanelPostsControl\Module' => 'ElementorPro\Modules\QueryControl\Module',
'ElementorPro\Modules\PanelPostsControl\Controls\Group_Control_Posts' => 'ElementorPro\Modules\QueryControl\Controls\Group_Control_Posts',
'ElementorPro\Modules\PanelPostsControl\Controls\Query' => 'ElementorPro\Modules\QueryControl\Controls\Query',
];
/**
* @deprecated
*
* @return string
*/
public function get_version() {
return ELEMENTOR_PRO_VERSION;
}
/**
* Throw error on object clone
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @since 1.0.0
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Something went wrong.', 'elementor-pro' ), '1.0.0' );
}
/**
* Disable unserializing of the class
*
* @since 1.0.0
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Something went wrong.', 'elementor-pro' ), '1.0.0' );
}
/**
* @return \Elementor\Plugin
*/
public static function elementor() {
return \Elementor\Plugin::$instance;
}
/**
* @return Plugin
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
private function includes() {
require ELEMENTOR_PRO_PATH . 'includes/modules-manager.php';
if ( is_admin() ) {
require ELEMENTOR_PRO_PATH . 'includes/admin.php';
}
}
public function autoload( $class ) {
if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
return;
}
$has_class_alias = isset( $this->classes_aliases[ $class ] );
// Backward Compatibility: Save old class name for set an alias after the new class is loaded
if ( $has_class_alias ) {
$class_alias_name = $this->classes_aliases[ $class ];
$class_to_load = $class_alias_name;
} else {
$class_to_load = $class;
}
if ( ! class_exists( $class_to_load ) ) {
$filename = strtolower(
preg_replace(
[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
$class_to_load
)
);
$filename = ELEMENTOR_PRO_PATH . $filename . '.php';
if ( is_readable( $filename ) ) {
include( $filename );
}
}
if ( $has_class_alias ) {
class_alias( $class_alias_name, $class );
}
}
public function enqueue_styles() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$direction_suffix = is_rtl() ? '-rtl' : '';
$frontend_file_name = 'frontend' . $direction_suffix . $suffix . '.css';
$has_custom_file = Responsive::has_custom_breakpoints();
if ( $has_custom_file ) {
$frontend_file = new FrontendFile( 'custom-pro-' . $frontend_file_name, self::get_responsive_templates_path() . $frontend_file_name );
$time = $frontend_file->get_meta( 'time' );
if ( ! $time ) {
$frontend_file->update();
}
$frontend_file_url = $frontend_file->get_url();
} else {
$frontend_file_url = ELEMENTOR_PRO_ASSETS_URL . 'css/' . $frontend_file_name;
}
wp_enqueue_style(
'elementor-pro',
$frontend_file_url,
[],
$has_custom_file ? null : ELEMENTOR_PRO_VERSION
);
}
public function enqueue_frontend_scripts() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_script(
'elementor-pro-frontend',
ELEMENTOR_PRO_URL . 'assets/js/frontend' . $suffix . '.js',
[
'elementor-frontend-modules',
'elementor-sticky',
],
ELEMENTOR_PRO_VERSION,
true
);
$locale_settings = [
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'nonce' => wp_create_nonce( 'elementor-pro-frontend' ),
];
/**
* Localize frontend settings.
*
* Filters the frontend localized settings.
*
* @since 1.0.0
*
* @param array $locale_settings Localized settings.
*/
$locale_settings = apply_filters( 'elementor_pro/frontend/localize_settings', $locale_settings );
Utils::print_js_config(
'elementor-pro-frontend',
'ElementorProFrontendConfig',
$locale_settings
);
}
public function enqueue_editor_scripts() {
$suffix = Utils::is_script_debug() ? '' : '.min';
wp_enqueue_script(
'elementor-pro',
ELEMENTOR_PRO_URL . 'assets/js/editor' . $suffix . '.js',
[
'backbone-marionette',
'elementor-common-modules',
'elementor-editor-modules',
],
ELEMENTOR_PRO_VERSION,
true
);
$is_license_active = false;
$license_key = License\Admin::get_license_key();
if ( ! empty( $license_key ) ) {
$license_data = License\API::get_license_data();
if ( ! empty( $license_data['license'] ) && License\API::STATUS_VALID === $license_data['license'] ) {
$is_license_active = true;
}
}
$locale_settings = [
'i18n' => [],
'isActive' => $is_license_active,
'urls' => [
'modules' => ELEMENTOR_PRO_MODULES_URL,
],
];
/**
* Localize editor settings.
*
* Filters the editor localized settings.
*
* @since 1.0.0
*
* @param array $locale_settings Localized settings.
*/
$locale_settings = apply_filters( 'elementor_pro/editor/localize_settings', $locale_settings );
Utils::print_js_config(
'elementor-pro',
'ElementorProConfig',
$locale_settings
);
}
public function register_frontend_scripts() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_register_script(
'smartmenus',
ELEMENTOR_PRO_URL . 'assets/lib/smartmenus/jquery.smartmenus' . $suffix . '.js',
[
'jquery',
],
'1.0.1',
true
);
wp_register_script(
'social-share',
ELEMENTOR_PRO_URL . 'assets/lib/social-share/social-share' . $suffix . '.js',
[
'jquery',
],
'0.2.17',
true
);
wp_register_script(
'elementor-sticky',
ELEMENTOR_PRO_URL . 'assets/lib/sticky/jquery.sticky' . $suffix . '.js',
[
'jquery',
],
ELEMENTOR_PRO_VERSION,
true
);
}
public function enqueue_editor_styles() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$direction_suffix = is_rtl() ? '-rtl' : '';
wp_enqueue_style(
'elementor-pro',
ELEMENTOR_PRO_URL . 'assets/css/editor' . $direction_suffix . $suffix . '.css',
[
'elementor-editor',
],
ELEMENTOR_PRO_VERSION
);
}
public function get_responsive_stylesheet_templates( $templates ) {
$templates_paths = glob( self::get_responsive_templates_path() . '*.css' );
foreach ( $templates_paths as $template_path ) {
$file_name = 'custom-pro-' . basename( $template_path );
$templates[ $file_name ] = $template_path;
}
return $templates;
}
public function on_elementor_init() {
$this->modules_manager = new Manager();
/** TODO: BC for Elementor v2.4.0 */
if ( class_exists( '\Elementor\Core\Upgrade\Manager' ) ) {
$this->upgrade = UpgradeManager::instance();
}
/**
* Elementor Pro init.
*
* Fires on Elementor Pro init, after Elementor has finished loading but
* before any headers are sent.
*
* @since 1.0.0
*/
do_action( 'elementor_pro/init' );
}
public function on_elementor_editor_init() {
self::elementor()->common->add_template( __DIR__ . '/includes/templates/editor.php' );
}
/**
* @param \Elementor\Core\Base\Document $document
*/
public function on_document_save_version( $document ) {
$document->update_meta( '_elementor_pro_version', ELEMENTOR_PRO_VERSION );
}
private function get_responsive_templates_path() {
return ELEMENTOR_PRO_ASSETS_PATH . 'css/templates/';
}
private function setup_hooks() {
add_action( 'elementor/init', [ $this, 'on_elementor_init' ] );
add_action( 'elementor/editor/init', [ $this, 'on_elementor_editor_init' ] );
add_action( 'elementor/frontend/before_register_scripts', [ $this, 'register_frontend_scripts' ] );
add_action( 'elementor/editor/after_enqueue_styles', [ $this, 'enqueue_editor_styles' ] );
add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_editor_scripts' ] );
add_action( 'elementor/frontend/before_enqueue_scripts', [ $this, 'enqueue_frontend_scripts' ] );
add_action( 'elementor/frontend/after_enqueue_styles', [ $this, 'enqueue_styles' ] );
add_filter( 'elementor/core/responsive/get_stylesheet_templates', [ $this, 'get_responsive_stylesheet_templates' ] );
add_action( 'elementor/document/save_version', [ $this, 'on_document_save_version' ] );
}
/**
* Plugin constructor.
*/
private function __construct() {
spl_autoload_register( [ $this, 'autoload' ] );
$this->includes();
new Connect\Manager();
$this->setup_hooks();
if ( is_admin() ) {
new Admin();
new License\Admin();
}
}
}
if ( ! defined( 'ELEMENTOR_PRO_TESTS' ) ) {
// In tests we run the instance manually.
Plugin::instance();
}