-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
38 lines (30 loc) · 875 Bytes
/
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
<?php
namespace Charm;
if (!defined('ABSPATH')) {
die('Whatcha doin? Ƹ̵̡Ӝ̵̨̄Ʒ');
}
/**
* Plugin Name: Charm <code>Ƹ̵̡Ӝ̵̨̄Ʒ</code>
* Plugin URI: https://wpcharm.com/
* Description: An object-oriented WordPress framework for developers to build entities and relationships.
* Version: 1.0.0
* Requires at least: 5.8
* Requires PHP: 8.0
* Author: Ryan Sechrest
* Author URI: https://ryansechrest.com/
* Text Domain: charm
* Network: true
*/
require_once WPMU_PLUGIN_DIR . '/charm/autoloader.php';
/****************************************************************************************/
Charm::init([
/**
* View cron events and schedules in WordPress admin
*
* Navigate to: Tools > Cron Viewer
*
* true | Enable cron viewer
* false | Disable cron viewer (default)
*/
'cron_viewer' => false,
]);