| 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( 'APCM_PRODUCT_NAME', 'APCu Manager' ); |
| 11 |
define( 'APCM_PRODUCT_URL', 'https://github.com/Pierre-Lannoy/wp-apcu-manager' ); |
| 12 |
define( 'APCM_PRODUCT_SHORTNAME', 'APCu' ); |
| 13 |
define( 'APCM_PRODUCT_ABBREVIATION', 'apcm' ); |
| 14 |
define( 'APCM_SLUG', 'apcu-manager' ); |
| 15 |
define( 'APCM_VERSION', '4.6.1' ); |
| 16 |
define( 'APCM_CODENAME', '"-"' ); |
| 17 |
|
| 18 |
define( 'APCM_CDN_AVAILABLE', true ); |
| 19 |
|
| 20 |
define( 'APCM_CRON_STATS_NAME', 'apcm_apcu_stats' ); |
| 21 |
define( 'APCM_CRON_GC_NAME', 'apcm_apcu_gc' ); |
| 22 |
|