-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathelementor-widget-manager.php
349 lines (299 loc) · 7.76 KB
/
elementor-widget-manager.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
<?php
/**
* Plugin Name: Elementor Widget Manager
* Plugin URI: https://ideabox.io/
* Author: IdeaBox
* Author URI: https://ideabox.io
* Version: 1.0.1
* Description: A simple way to deactivate/activate Elementor widgets.
* Text Domain: el-widget-manager
*
* @package WordPress
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'EL_WIDGET_MANAGER_PATH', plugin_dir_path( __FILE__ ) );
define( 'EL_WIDGET_MANAGER_URL', plugin_dir_url( __FILE__ ) );
define( 'EL_WIDGET_MANAGER_VERSION', '1.0.1' );
/**
* Elementor Widget Manager class.
*
* The main class that initiates and runs the plugin.
*
* @since 1.0.0
*/
final class Elementor_Widget_Manager {
/**
* Minimum Elementor Version.
*
* @since 1.0.0
*
* @var string Minimum Elementor version required to run the plugin.
*/
const MINIMUM_ELEMENTOR_VERSION = '2.0.0';
/**
* Minimum PHP Version.
*
* @since 1.0.0
*
* @var string Minimum PHP version required to run the plugin.
*/
const MINIMUM_PHP_VERSION = '7.0';
/**
* Holds all registered Elementor's widgets.
*
* @since 1.0.0
*
* @var array Getting all the widgets for react.
*/
public $widgets = array();
/**
* Instance
*
* @since 1.0.0
*
* @access private
* @static
*
* @var Elementor_Widget_Manager 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_Widget_Manager An instance of the class.
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self(); // Self here denotes the class name.
}
return self::$instance;
}
/**
* Constructor
*
* @since 1.0.0
*
* @access public
*/
public function __construct() {
add_action( 'init', array( $this, 'i18n' ) );
// Action to see if conditions are met as plugin is loaded.
add_action( 'plugins_loaded', array( $this, 'init' ) );
}
/**
* i18n.
*
* Load plugin localization files.
*
* Fired by `init` action hook.
*
* @uses load_plugin_textdomain
*
* @since 1.0.0
*
* @return void
*/
public function i18n() {
load_plugin_textdomain( 'el-widget-manager' );
}
/**
* Initialize the plugin.
*
* Load the plugin only after Elementor (and other plugins) are loaded.
* Check 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
*
* @return void
*/
public function init() {
// Check if Elementor is installed and activated.
if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', array( $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', array( $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', array( $this, 'admin_notice_minimum_php_version' ) );
return;
}
$this->includes();
add_action( 'elementor/widgets/widgets_registered', array( $this, 'unregister_widgets' ), 99 );
}
/**
* Includes.
*
* Include required files.
*
* @since 1.0.0
*
* @return void
*/
public function includes() {
require_once 'classes/class-widget-manager-loader.php';
}
/**
* Admin Notice
*
* Warning when site doesn't have Elementor installed or activated.
*
* @since 1.0.0
*
* @access public
*/
public function admin_notice_missing_main_plugin() {
// Checcking if current plugin is activated and then unset it.
if ( isset( $_GET['activate'] ) ) {
// Reset the variable.
unset ( $_GET['activate'] );
}
// Printing the message.
$message = sprintf(
/* translators: 1: Plugin name 2: Elementor*/
esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'el-widget-manager' ),
'<strong>' . esc_html__( 'Elementor Widget Manager', 'el-widget-manager' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'el-widget-manager' ) . '</strong>'
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Admin Notice Minimum Elementor Version.
*
* Warning when site does not meet minimum required Elementor version.
*
* @since 1.0.0
*
* @return void
*/
public function admin_notice_minimum_elementor_version() {
// Check if current plugin is activated and then unset it.
if ( isset( $_GET['activate'] ) ) {
// Reset the variable.
unset( $_GET['activate'] );
}
// Printing the message.
$message = sprintf(
/* translators: 1: Plugin name 2: Elementor 3: Required Elementor version*/
esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'el-widget-manager' ),
'<strong>' . esc_html__( 'Elementor Widget Manager', 'el-widget-manager' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'el-widget-manager' ) . '</strong>',
self::MINIMUM_ELEMENTOR_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Admin Notice Minimum PHP version.
*
* Warning when site does not meet minimum required PHP version.
*
* @since 1.0.0
*
* @return void
*/
public function admin_notice_minimum_php_version() {
// Check if current plugin is activated and then unset it.
if ( isset( $_GET['activate'] ) ) {
// Reset the variable.
unset ( $_GET['activate'] );
}
// Printing the message.
$message = sprintf(
/* translators: 1: Plugin name 2: PHP 3: Required PHP version*/
esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'el-widget-manager' ),
'<strong>' . esc_html__( 'Elementor Widget Manager', 'el-widget-manager' ) . '</strong>',
'<strong>' . esc_html__( 'PHP', 'el-widget-manager' ) . '</strong>',
self::MINIMUM_PHP_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Unregister Widget.
*
* Unregistering the selected widget.
*
* @since 1.0.0
*
* @return void
*/
public function unregister_widgets() {
$elementor = Elementor\Plugin::instance();
if ( ! $elementor->editor->is_edit_mode() ) {
return;
}
$selected_widgets = get_option( 'ewm_widget' );
if ( ! empty( $selected_widgets ) ) {
foreach ( $selected_widgets as $widget ) {
$elementor->widgets_manager->unregister_widget_type( $widget );
}
}
}
/**
* Get registered widgets.
*
* Get all registered widgets of Elementor.
*
* @since 1.0.0
*
* @return array
*/
public function get_registered_widgets() {
if ( ! empty( $this->widgets ) ) {
return $this->widgets;
}
$elementor = Elementor\Plugin::instance();
// Fetching all the widget types names and its properties.
$types = $elementor->widgets_manager->get_widget_types();
$categories = $this->get_categories();
$widgets = array();
foreach ( $types as $type ) {
// $widget_cat = $type->get_categories();
// if ( ! in_array( $widget_cat[0], $categories, true ) ) {
// continue;
// }
$widgets[ $type->get_name() ] = $type->get_title();
}
if ( isset( $widgets['common'] ) ) {
unset( $widgets['common'] );
}
asort( $widgets );
$this->widgets = $widgets;
return $widgets;
}
/**
* Categories Function.
*
* Getting Categories to compare with Elementor categories.
*
* @since 1.0.0
*
* @return array
*/
public function get_categories() {
return array(
'basic',
'pro-elements',
'general',
'theme-elements',
'woocommerce-elements',
'wordpress',
);
}
}
Elementor_Widget_Manager::instance();