-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHelpScout_Desk.php
54 lines (47 loc) · 1.13 KB
/
HelpScout_Desk.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
<?php
/**
* A fundamental class from which all other classes in the plugin should be derived.
* The purpose of this class is to hold data useful to all classes.
* @package SI
*/
if ( ! defined( 'HSD_FREE' ) ) {
define( 'HSD_FREE', false ); }
if ( ! defined( 'HSD_DEV' ) ) {
define( 'HSD_DEV', false ); }
if ( ! defined( 'SUPPORT_URL' ) ) {
define( 'SUPPORT_URL', 'https://wphelpscout.com/support/docs/getting-started-with-help-scout-desk/' );
}
abstract class HelpScout_Desk {
/**
* Application app-domain
*/
const APP_DOMAIN = 'help-scout-desk';
/**
* Application text-domain
*/
const TEXT_DOMAIN = 'help-scout-desk';
/**
* Application text-domain
*/
const PLUGIN_URL = 'https://wphelpscout.com';
/**
* Current version. Should match help-scout-desk.php plugin version.
*/
const HSD_VERSION = '6.5.6';
/**
* DB Version
*/
const DB_VERSION = 1;
/**
* Application Name
*/
const PLUGIN_NAME = 'Help Scout Desk';
const PLUGIN_FILE = HSD_PLUGIN_FILE;
/**
* HSD_DEV constant within the wp-config to turn on SI debugging
* <code>
* define( 'HSD_DEV', TRUE/FALSE )
* </code>
*/
const DEBUG = HSD_DEV;
}