-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin-admin-notes.php
executable file
·476 lines (416 loc) · 11.1 KB
/
plugin-admin-notes.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
<?php
/**
* Plugin Name: Plugin Admin Notes
* Plugin URI: http://webdevstudios.com
* Description: Adds a column to plugins to allow admins to leave notes as well as turn on auto-update and lock plugins
* from updating.
* Version: 0.1.0
* Author: WebDevStudios
* Author URI: http://webdevstudios.com
* Donate link:
* http://webdevstudios.com
* License: GPLv2
* Text Domain: plugin-admin-notes
* Domain Path: /languages
*
* @link http://webdevstudios.com
*
* @package Plugin Admin Notes
* @version 0.1.0
*/
/**
* Copyright (c) 2017 WebDevStudios (email : [email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Built using generator-plugin-wp
*/
/**
* Autoloads files with classes when needed
*
* @since 0.1.0
*
* @param string $class_name Name of the class being requested.
*
* @return void
*/
function wds_plugin_police_autoload_classes( $class_name ) {
if ( 0 !== strpos( $class_name, 'WDSPP_' ) ) {
return;
}
$filename = strtolower( str_replace(
'_', '-',
substr( $class_name, strlen( 'WDSPP_' ) )
) );
WDS_Plugin_Police::include_file( 'includes/class-' . $filename );
}
spl_autoload_register( 'wds_plugin_police_autoload_classes' );
/**
* Main initiation class
*
* @since 0.1.0
*/
final class WDS_Plugin_Police {
/**
* Current version
*
* @var string
* @since 0.1.0
*/
const VERSION = '0.1.0';
/**
* URL of plugin directory
*
* @var string
* @since 0.1.0
*/
protected $url = '';
/**
* Path of plugin directory
*
* @var string
* @since 0.1.0
*/
protected $path = '';
/**
* Plugin basename
*
* @var string
* @since 0.1.0
*/
protected $basename = '';
/**
* Detailed activation error messages
*
* @var array
* @since 0.1.0
*/
protected $activation_errors = array();
/**
* Singleton instance of plugin
*
* @var WDS_Plugin_Police
* @since 0.1.0
*/
protected static $single_instance = null;
/**
* Instance of WDSPP_Add_plugin_row
*
* @since0.1.0
* @var WDSPP_Add_plugin_row
*/
protected $add_plugin_row;
/**
* Instance of WDSPP_View
*
* @since0.1.0
* @var WDSPP_View
*/
protected $view;
/**
* Instance of WDSPP_Plugin_police
*
* @since0.1.0
* @var WDSPP_Plugin_police
*/
protected $plugin_police;
/**
* Instance of WDSPP_Dynamic_form
*
* @since0.1.0
* @var WDSPP_Dynamic_form
*/
protected $dynamic_form;
/**
* Creates or returns an instance of this class.
*
* @since 0.1.0
* @return WDS_Plugin_Police A single instance of this class.
*/
public static function get_instance() {
if ( null === self::$single_instance ) {
self::$single_instance = new self();
}
return self::$single_instance;
}
/**
* Sets up our plugin
*
* @since 0.1.0
*/
protected function __construct() {
$this->basename = plugin_basename( __FILE__ );
$this->url = plugin_dir_url( __FILE__ );
$this->path = plugin_dir_path( __FILE__ );
}
/**
* Attach other plugin classes to the base plugin class.
*
* @since 0.1.0
* @return void
*/
public function plugin_classes() {
// Attach other plugin classes to the base plugin class.
$this->view = new WDSPP_View( $this );
$this->plugin_police = new WDSPP_Plugin_police( $this );
$this->dynamic_form = new WDSPP_Dynamic_form( $this );
} // END OF PLUGIN CLASSES FUNCTION
/**
* Add hooks and filters
*
* @since 0.1.0
* @return void
*/
public function hooks() {
// Priority needs to be:
// < 10 for CPT_Core,
// < 5 for Taxonomy_Core,
// 0 Widgets because widgets_init runs at init priority 1.
add_action( 'plugins_loaded', array( $this, 'init' ), 1 );
add_action( 'admin_enqueue_scripts', array( $this, 'eq_scripts' ), 10, 1 );
}
/**
* EQ the script.
*
* @since 0.1.0
*/
public function eq_scripts( $page ) {
// Make sure we aren't loading in all admin screens.
if ( 'plugins.php' !== $page ) {
return;
}
wp_enqueue_script( 'pluginnotes', $this->url . 'assets/js/plugin-notes.js', array( 'jquery' ), '0.1.0' );
// Localize our strings.
$l10n = array( 'loading_message' => __( 'Loading…', 'plugin-admin-notes' ) );
wp_localize_script( 'pluginnotes', 'AdminNotes', $l10n );
wp_enqueue_script( 'pluginnotes_emojipicker', $this->url . 'assets/js/jquery.emojipicker.js', array( 'jquery' ), '0.1.0' );
wp_enqueue_script( 'pluginnotes_emojis', $this->url . 'assets/js/jquery.emojis.js', array( 'jquery' ), '0.1.0' );
wp_enqueue_style( 'pluginnotes_emojipicker_styles', $this->url . 'assets/css/jquery.emojipicker.css' );
wp_enqueue_style( 'pluginnotes_emojis_styles', $this->url . 'assets/css/jquery.emojipicker.a.css' );
wp_enqueue_style( 'pluginnotes_fontawesome', $this->url . 'assets/css/font-awesome.min.css' );
wp_enqueue_style( 'pluginnotes_css', $this->url . 'assets/css/plugin-admin-notes.css' );
}
/**
* Activate the plugin
*
* @since 0.1.0
* @return void
*/
public function _activate() {
// Make sure any rewrite functionality has been loaded.
flush_rewrite_rules();
}
/**
* Deactivate the plugin
* Uninstall routines should be in uninstall.php
*
* @since 0.1.0
* @return void
*/
public function _deactivate() {
}
/**
* Init hooks
*
* @since 0.1.0
* @return void
*/
public function init() {
// bail early if requirements aren't met
if ( ! $this->check_requirements() ) {
return;
}
// load translated strings for plugin
load_plugin_textdomain( 'wds-plugin-police', false, dirname( $this->basename ) . '/languages/' );
// initialize plugin classes
$this->plugin_classes();
if ( ! defined( 'DOING_AJAX' ) && file_exists( $this->path . 'pluginnotes.log' ) ) {
file_put_contents( $this->path . 'pluginnotes.log', '' );
}
if ( 'WP_UNINSTALL_PLUGIN' && isset( $_POST['action'] ) && 'delete-plugin' == $_POST['action'] ) {
error_log( print_r( $_POST, 1 ) );
$this->view->remove_plugin( $_POST['slug'] );
}
}
/**
* Check if the plugin meets requirements and
* disable it if they are not present.
*
* @since 0.1.0
* @return boolean result of meets_requirements
*/
public function check_requirements() {
// bail early if pluginmeets requirements
if ( $this->meets_requirements() ) {
return true;
}
// Add a dashboard notice.
add_action( 'all_admin_notices', array( $this, 'requirements_not_met_notice' ) );
// Deactivate our plugin.
add_action( 'admin_init', array( $this, 'deactivate_me' ) );
return false;
}
/**
* Deactivates this plugin, hook this function on admin_init.
*
* @since 0.1.0
* @return void
*/
public function deactivate_me() {
// We do a check for deactivate_plugins before calling it, to protect
// any developers from accidentally calling it too early and breaking things.
if ( function_exists( 'deactivate_plugins' ) ) {
deactivate_plugins( $this->basename );
}
}
/**
* Check that all plugin requirements are met
*
* @since 0.1.0
* @return boolean True if requirements are met.
*/
public function meets_requirements() {
// Do checks for required classes / functions
// function_exists('') & class_exists('').
// We have met all requirements.
// Add detailed messages to $this->activation_errors array
return true;
}
/**
* Adds a notice to the dashboard if the plugin requirements are not met
*
* @since 0.1.0
* @return void
*/
public function requirements_not_met_notice() {
// compile default message
$default_message = sprintf(
__( 'WDS Plugin Police is missing requirements and has been <a href="%s">deactivated</a>. Please make sure all requirements are available.', 'wds-plugin-police' ),
admin_url( 'plugins.php' )
);
// default details to null
$details = null;
// add details if any exist
if ( ! empty( $this->activation_errors ) && is_array( $this->activation_errors ) ) {
$details = '<small>' . implode( '</small><br /><small>', $this->activation_errors ) . '</small>';
}
// output errors
?>
<div id="message" class="error">
<p><?php echo $default_message; ?></p>
<?php echo $details; ?>
</div>
<?php
}
/**
* Magic getter for our object.
*
* @since 0.1.0
*
* @param string $field Field to get.
*
* @throws Exception Throws an exception if the field is invalid.
* @return mixed
*/
public function __get( $field ) {
switch ( $field ) {
case 'version':
return self::VERSION;
case 'basename':
case 'url':
case 'path':
case 'view':
case 'plugin_police':
case 'dynamic_form':
return $this->$field;
default:
throw new Exception( 'Invalid ' . __CLASS__ . ' property: ' . $field );
}
}
/**
* Include a file from the includes directory
*
* @since 0.1.0
*
* @param string $filename Name of the file to be included.
*
* @return bool Result of include call.
*/
public static function include_file( $filename ) {
$file = self::dir( $filename . '.php' );
if ( file_exists( $file ) ) {
return include_once( $file );
}
return false;
}
/**
* This plugin's directory
*
* @since 0.1.0
*
* @param string $path (optional) appended path.
*
* @return string Directory and path
*/
public static function dir( $path = '' ) {
static $dir;
$dir = $dir ? $dir : trailingslashit( dirname( __FILE__ ) );
return $dir . $path;
}
/**
* This plugin's url
*
* @since 0.1.0
*
* @param string $path (optional) appended path.
*
* @return string URL and path
*/
public static function url( $path = '' ) {
static $url;
$url = $url ? $url : trailingslashit( plugin_dir_url( __FILE__ ) );
return $url . $path;
}
}
/**
* Grab the WDS_Plugin_Police object and return it.
* Wrapper for WDS_Plugin_Police::get_instance()
*
* @since 0.1.0
* @return WDS_Plugin_Police Singleton instance of plugin class.
*/
function wds_plugin_police() {
return WDS_Plugin_Police::get_instance();
}
// Kick it off.
add_action( 'plugins_loaded', array( wds_plugin_police(), 'hooks' ), 0 );
register_activation_hook( __FILE__, array( wds_plugin_police(), '_activate' ) );
register_deactivation_hook( __FILE__, array( wds_plugin_police(), '_deactivate' ) );
/**
* Deletes the plugin data.
*
* @since 0.1.0
*/
function uninstall_wds_plugin_admin_notes() {
global $wpdb;
$ids = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type='wdspp-plugin-police'" );
foreach ( $ids as $post ) {
wp_delete_post( $post, true );
}
delete_option( 'wds_plugin_lock_updates' );
delete_option( 'wds_plugin_updates_auto_updates' );
}
register_uninstall_hook( __FILE__, 'uninstall_wds_plugin_admin_notes' );