-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconstants.php
65 lines (47 loc) · 1.24 KB
/
constants.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
<?php
/**
* Plugin Constats
* define constants used throughout Timeline Express
* By Code Parrots
*
* @link http://www.codeparrots.com
*
* @package Timeline Express
* @since 1.2
*/
/**
* Define the current version of Timeline Express
*/
if ( ! defined( 'TIMELINE_EXPRESS_VERSION_CURRENT' ) ) {
define( 'TIMELINE_EXPRESS_VERSION_CURRENT', '1.8.1' );
}
/**
* Define the path to Timeline Express
*/
if ( ! defined( 'TIMELINE_EXPRESS_PATH' ) ) {
define( 'TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ) );
}
/**
* Define the URL of Timeline Express
*/
if ( ! defined( 'TIMELINE_EXPRESS_URL' ) ) {
define( 'TIMELINE_EXPRESS_URL', plugins_url( 'timeline-express/' ) );
}
/**
* Define the name of the option in the database
*/
if ( ! defined( 'TIMELINE_EXPRESS_OPTION' ) ) {
define( 'TIMELINE_EXPRESS_OPTION', 'timeline_express_storage' );
}
/**
* Define Support/Update endpoint URLs for our Add-ons
*/
if ( ! defined( 'TIMELINE_EXPRESS_SITE_URL' ) ) {
define( 'TIMELINE_EXPRESS_SITE_URL', 'https://www.wp-timelineexpress.com' );
}
/**
* Define Timeline Express blocks path
*/
if ( ! defined( 'TIMELINE_EXPRESS_BLOCKS_PATH' ) ) {
define( 'TIMELINE_EXPRESS_BLOCKS_PATH', plugin_dir_path( __FILE__ ) . '/lib/admin/blocks/' );
}