-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconstants.php
More file actions
34 lines (25 loc) · 837 Bytes
/
Copy pathconstants.php
File metadata and controls
34 lines (25 loc) · 837 Bytes
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
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! defined( 'RAPIDLOAD_PLUGIN_DIR' ) ) {
define( 'RAPIDLOAD_PLUGIN_DIR', __DIR__ );
}
if ( ! defined( 'RAPIDLOAD_SETTINGS_DIR' ) ) {
define( 'RAPIDLOAD_SETTINGS_DIR', WP_CONTENT_DIR . '/settings/rapidload' );
}
if ( ! defined( 'RAPIDLOAD_CACHE_DIR' ) ) {
define( 'RAPIDLOAD_CACHE_DIR', WP_CONTENT_DIR . '/cache/rapidload-cache' );
}
if ( ! defined( 'RAPIDLOAD_CONSTANT_FILE' ) ) {
define( 'RAPIDLOAD_CONSTANT_FILE', __DIR__ . '/constants.php' );
}
if ( ! defined( 'RAPIDLOAD_INDEX_FILE' ) ) {
define( 'RAPIDLOAD_INDEX_FILE', ABSPATH . 'index.php' );
}
if ( ! defined( 'RAPIDLOAD_VERSION' ) ) {
define( 'RAPIDLOAD_VERSION', '3.1.19' );
}
if ( ! defined( 'RAPIDLOAD_CACHE_CHILD_DIR' ) ) {
define( 'RAPIDLOAD_CACHE_CHILD_DIR', '/cache/rapidload/' );
}