forked from WebMatPro/flexible-elementor-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flexible-elementor-panel.php
486 lines (392 loc) · 11.7 KB
/
flexible-elementor-panel.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<?php
/**
Plugin Name: Flexible Elementor Panel
Plugin URI: https://wordpress.org/plugins/flexible-elementor-panel
Description: This is an add-on for popular page builder Elementor. Makes Elementor Widgets Panel flexible, draggable and folding that more space and opportunities.
Version: 2.0.0
Author: Flexible-Elementor-Panel.com
Author URI: https://flexible-elementor-panel.com
Text Domain: fep
Domain Path: /languages
**/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
//define var
$plugin_data = get_file_data(__FILE__, array('Version' => 'Version'), false);
$plugin_version = $plugin_data['Version'];
define( 'FEP_VERSION', $plugin_version );
define( 'FEP_FILE', __FILE__ );
define( 'FEP_URL', plugins_url( '/', __FILE__ ) );
define( 'FEP_PATH', plugin_dir_path( __FILE__ ) );
define( 'FEP_BASENAME', plugin_basename(__FILE__) );
use Elementor\Core\Settings\Manager as SettingsManager;
use FEP\Core\Settings\General\Manager as FEP_Manager;
/**
* Main Elementor FEP Extension Class
*
* The main class that initiates and runs the plugin.
*
* @since 1.0.0
*/
final class Elementor_FEP_Extension {
/**
* Minimum Elementor Version
*
* @since 1.0.0
*
* @var string Minimum Elementor version required to run the plugin.
*/
const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
/**
* Minimum PHP Version
*
* @since 1.0.0
*
* @var string Minimum PHP version required to run the plugin.
*/
const MINIMUM_PHP_VERSION = '5.6';
/**
* Instance
*
* @since 1.0.0
*
* @access private
* @static
*
* @var Elementor_FEP_Extension The single instance of the class.
*/
private static $_instance = null;
/**
* Instance
*
* Ensures only one instance of the class is loaded or can be loaded.
*
* @since 1.0.0
*
* @access public
* @static
*
* @return Elementor_FEP_Extension An instance of the class.
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Constructor
*
* @since 1.0.0
*
* @access public
*/
public function __construct() {
add_action( 'init', [ $this, 'i18n' ] );
add_action( 'plugins_loaded', [ $this, 'init' ] );
}
/**
* Load Textdomain
*
* Load plugin localization files.
*
* Fired by `init` action hook.
*
* @since 1.0.0
*
* @access public
*/
public function i18n() {
load_plugin_textdomain( 'fep', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Initialize the plugin
*
* Load the plugin only after Elementor (and other plugins) are loaded.
* Checks for basic plugin requirements, if one check fail don't continue,
* if all check have passed load the files required to run the plugin.
*
* Fired by `plugins_loaded` action hook.
*
* @since 1.0.0
*
* @access public
*/
public function init() {
// Check if Elementor installed and activated
if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', [ $this, 'admin_notice_missing_main_plugin' ] );
return;
}
// Check for required Elementor version
if ( ! version_compare( ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=' ) ) {
add_action( 'admin_notices', [ $this, 'admin_notice_minimum_elementor_version' ] );
return;
}
// Check for required PHP version
if ( version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '<' ) ) {
add_action( 'admin_notices', [ $this, 'admin_notice_minimum_php_version' ] );
return;
}
/////////////// continues if all conditionnal be okay
// Plugin Activation
add_action( 'admin_notices', [ $this, 'admin_notice_fep_activation' ] );
add_action( 'elementor/editor/after_enqueue_styles', [ $this, 'fep_styles_editor' ], 8 ); // Register Styles Editor
add_action( 'elementor/preview/enqueue_styles', [ $this, 'fep_styles_preview' ], 8 ); // Register Styles
// Register Scripts
add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'fep_scripts' ], 8 );
// Include plugin files
$this->includes();
// Init setting panel FEP
$this->init_panel();
$settings = FEP_Manager::get_settings();
}
/**
* Includes Files
*
* Include Required Module Files from plugin FEP
*
* @since 1.0.0
*
* @access public
*/
public function includes() {
if( is_admin() ) {
require_once FEP_PATH . 'admin/admin.php';
}
require_once FEP_PATH . 'inc/settings/manager.php';
require_once FEP_PATH . 'inc/settings/model.php';
}
/**
* Scripts
*
* Register the scripts of plugin FEP
*
* @since 1.0.0
*
* @access public
*/
private function init_panel() {
// add the settings from the file /inc/settings/manager.php
SettingsManager::add_settings_manager( new FEP_Manager() );
}
/**
* Plugin activation
*
* Run when plugin activating
*
* @since 1.0.0
*
* @access public
*/
public static function fep_activation() {
set_transient( 'fep-admin-notice-activation', true, 5 );
}
/**
* Admin notice
*
* Warning when the site doesn't have Elementor installed or activated.
*
* @since 1.0.0
*
* @access public
*/
public function admin_notice_missing_main_plugin() {
if ( isset( $_GET['activate'] ) ) unset( $_GET['activate'] );
$message = sprintf(
esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'fep' ),
'<strong>' . esc_html__( 'Flexible Elementor Panel', 'fep' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'fep' ) . '</strong>'
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Admin notice
*
* Warning when the site doesn't have a minimum required Elementor version.
*
* @since 1.0.0
*
* @access public
*/
public function admin_notice_minimum_elementor_version() {
if ( isset( $_GET['activate'] ) ) unset( $_GET['activate'] );
$message = sprintf(
esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'fep' ),
'<strong>' . esc_html__( 'Flexible Elementor Panel', 'fep' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'fep' ) . '</strong>',
self::MINIMUM_ELEMENTOR_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Admin notice
*
* Warning when the site doesn't have a minimum required PHP version.
*
* @since 1.0.0
*
* @access public
*/
public function admin_notice_minimum_php_version() {
if ( isset( $_GET['activate'] ) ) unset( $_GET['activate'] );
$message = sprintf(
esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'fep' ),
'<strong>' . esc_html__( 'Flexible Elementor Panel', 'fep' ) . '</strong>',
'<strong>' . esc_html__( 'PHP', 'fep' ) . '</strong>',
self::MINIMUM_PHP_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Admin notice
*
* Notive when plugin actived
*
* @since 1.0.0
*
* @access public
*/
public function admin_notice_fep_activation() {
/* Check transient, if available display notice */
if( get_transient( 'fep-admin-notice-activation' ) ) {
$message = sprintf(
esc_html__( 'Thanks you to use our plugin %1$s, %2$s', 'fep' ),
'<strong>' . esc_html__( 'Flexible Elementor Panel', 'fep' ) . '</strong>',
'<a href="'.site_url().'/wp-admin/admin.php?page=fep-options">' . esc_html__( 'go to the information page for understand how to configure it', 'fep' ) . '</a>'
);
printf( '<div class="notice notice-info is-dismissible"><p>%1$s</p></div>', $message );
/* Delete transient, only display this notice once. */
delete_transient( 'fep-admin-notice-activation' );
}
}
/**
* Styles
*
* Register the styles of plugin FEP Editor
*
* @since 1.0.0
*
* @access public
*/
public function fep_styles_editor() {
wp_enqueue_style( 'flexible-elementor-panel-editor', plugins_url( '/assets/css/flexible-elementor-panel-editor.css', __FILE__ ), false, constant( 'FEP_VERSION' ), 'all' );
wp_enqueue_style( 'flexible-elementor-panel-editor-night-skin', plugins_url( '/assets/css/flexible-elementor-panel-editor-night-skin.css', __FILE__ ), false, constant( 'FEP_VERSION' ), 'all' );
}
/**
* Styles
*
* Register the styles of plugin FEP Preview
*
* @since 1.0.0
*
* @access public
*/
public function fep_styles_preview() {
wp_enqueue_style( 'flexible-elementor-panel-preview', plugins_url( '/assets/css/flexible-elementor-panel-preview.css', __FILE__ ), false, constant( 'FEP_VERSION' ), 'all' );
}
/**
* Scripts
*
* Register the scripts of plugin FEP
*
* @since 1.0.0
*
* @access public
*/
public function fep_scripts() {
if ( is_rtl() ) {
$rtl = true;
} else {
$rtl = false;
}
$settings = FEP_Manager::get_settings();
wp_enqueue_script( 'onmutate-js', plugins_url( '/assets/js/libs/jquery.onmutate.min.js', __FILE__ ), false, '1.4.2', true );
wp_register_script( 'fep-functions-js', plugins_url( '/assets/js/fep-functions.js', __FILE__ ), false, constant( 'FEP_VERSION' ), true );
wp_localize_script( 'fep-functions-js', 'FEP', array(
'Permalink' => get_permalink(),
'PostType' => get_post_type( get_the_ID() ),
'rtl' => $rtl,
));
wp_localize_script( 'fep-functions-js', 'fepConfig', $settings );
wp_enqueue_script( 'fep-functions-js' );
wp_register_script( 'flexible-elementor-panel-js', plugins_url( '/assets/js/flexible-elementor-panel.js', __FILE__ ), false, constant( 'FEP_VERSION' ), true );
wp_localize_script( 'flexible-elementor-panel-js', 'fepConfig', $settings );
wp_enqueue_script( 'flexible-elementor-panel-js' );
// Localize the script with new data
$translation_array = array(
'exit_tooltip' => __( 'Exit', 'fep' ),
);
wp_localize_script( 'flexible-elementor-panel-js', 'fep', $translation_array );
}
}
Elementor_FEP_Extension::instance();
// Plugin Activation
register_activation_hook( __FILE__, [ 'Elementor_FEP_Extension', 'fep_activation' ] );
/**
* Wrappers for default l10n functions to include in your theme or plugin.
*/
if ( ! function_exists( 'e_l10n__' ) ) {
/**
* Wrapper for __() gettext function.
* @param string $string Translatable text string
* @param string $textdomain Text domain, default: woocommerce
* @return void
*/
function e_l10n__( $string, $textdomain = 'elementor' ) {
return __( $string, $textdomain );
}
}
if ( ! function_exists( 'e_l10n_e' ) ) {
/**
* Wrapper for _e() gettext function.
* @param string $string Translatable text string
* @param string $textdomain Text domain, default: woocommerce
* @return void
*/
function e_l10n_e( $string, $textdomain = 'elementor' ) {
return _e( $string, $textdomain );
}
}
if ( ! function_exists( 'epro_l10n__' ) ) {
/**
* Wrapper for __() gettext function.
* @param string $string Translatable text string
* @param string $textdomain Text domain, default: woocommerce
* @return void
*/
function epro_l10n__( $string, $textdomain = 'elementor-pro' ) {
return __( $string, $textdomain );
}
}
if ( ! function_exists( 'epro_l10n_e' ) ) {
/**
* Wrapper for _e() gettext function.
* @param string $string Translatable text string
* @param string $textdomain Text domain, default: woocommerce
* @return void
*/
function epro_l10n_e( $string, $textdomain = 'elementor-pro' ) {
return _e( $string, $textdomain );
}
}
/* repeat for other l10n function, see wp-includes/l10n.php */
/************ future dev ************/
/*
add_action( 'wp_footer', function() {
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
return;
}
?>
<script>
jQuery( function( $ ) {
// Add space for Elementor Menu Anchor link
elementor.hooks.addAction( 'panel/elements/categories', function( panel, model, view ) {
alert(view);
} );
} );
</script>
<?php
} );
*/