| 1 |
<?php |
| 2 |
/** |
| 3 |
* Initialization of globals. |
| 4 |
* |
| 5 |
* @package Bootstrap |
| 6 |
* @author Pierre Lannoy <https://pierre.lannoy.fr/>. |
| 7 |
* @since 1.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
define( 'OPCM_PRODUCT_NAME', 'OPcache Manager' ); |
| 11 |
define( 'OPCM_PRODUCT_URL', 'https://github.com/Pierre-Lannoy/wp-opcache-manager' ); |
| 12 |
define( 'OPCM_PRODUCT_SHORTNAME', 'OPcache' ); |
| 13 |
define( 'OPCM_PRODUCT_ABBREVIATION', 'opcm' ); |
| 14 |
define( 'OPCM_SLUG', 'opcache-manager' ); |
| 15 |
define( 'OPCM_VERSION', '3.5.0' ); |
| 16 |
define( 'OPCM_CODENAME', '"-"' ); |
| 17 |
|
| 18 |
define( 'OPCM_CDN_AVAILABLE', true ); |
| 19 |
|
| 20 |
define( 'OPCM_CRON_RESET_NAME', 'opcm_opcache_reset' ); |
| 21 |
define( 'OPCM_CRON_WATCHDOG_NAME', 'opcm_watchdog' ); |
| 22 |
define( 'OPCM_CRON_STATS_NAME', 'opcm_opcache_stats' ); |
| 23 |
|