Cheetah
constants.inc.php
Go to the documentation of this file.
1 <?php
2 
8 if(!defined("TRUE_VAL")) define("TRUE_VAL", "true");
9 if(!defined("FALSE_VAL")) define("FALSE_VAL", "false");
10 if(!defined("SUCCESS_VAL")) define("SUCCESS_VAL", "success");
11 if(!defined("FAILED_VAL")) define("FAILED_VAL", "failed");
12 
13 if(!defined("CONTENTS_TYPE_XML")) define("CONTENTS_TYPE_XML", "xml");
14 if(!defined("CONTENTS_TYPE_SWF")) define("CONTENTS_TYPE_SWF", "swf");
15 if(!defined("CONTENTS_TYPE_OTHER")) define("CONTENTS_TYPE_OTHER", "other");
16 
17 if(!defined("WIDGET_STATUS_ENABLED")) define("WIDGET_STATUS_ENABLED", "enabled");
18 if(!defined("WIDGET_STATUS_DISABLED")) define("WIDGET_STATUS_DISABLED", "disabled");
19 if(!defined("WIDGET_STATUS_NOT_INSTALLED")) define("WIDGET_STATUS_NOT_INSTALLED", "not installed");
20 if(!defined("WIDGET_STATUS_NOT_REGISTERED")) define("WIDGET_STATUS_NOT_REGISTERED", "not registered");
21 
22 if(!defined("USER_STATUS_OFFLINE")) define("USER_STATUS_OFFLINE", "offline");
23 
24 if(!defined("FILE_DEFAULT_KEY")) define("FILE_DEFAULT_KEY", "_default_");
25 
26 $aErrorCodes = array(
27  1 => "Cannot open file '#1#'",
28  2 => "Cannot write to file '#1#'",
29  3 => "Cannot connect to database server",
30  4 => "Cannot open database",
31  5 => "Cannot execute MySQL query",
32  6 => "Cannot find directory '#1#'",
33  7 => "Directory '#1#' is empty",
34  8 => "Wrong widget name"
35 );
36 
37 $aInfo = array(
38  'mode' => "paid",
39  'title' => "Ray base",
40  'version' => "7.2.0000",
41  'author' => "Cheetah",
42  'authorUrl' => "https://www.cheetahwsb.com/"
43 );
44 $aModules = array(
45  'admin' => array(
46  'caption' => 'Base',
47  'parameters' => array('nick', 'password'),
48  'js' => array(),
49  'inline' => false,
50  'vResizable' => false,
51  'hResizable' => false,
52  'layout' => array('top' => 0, 'left' => 0, 'width' => 700, 'height' => 600),
53  'minSize' => array('width' => 700, 'height' => 600),
54  'reloadable' => false,
55  'div' => array()
56  )
57 );
php
$aInfo
$aInfo
Definition: constants.inc.php:21
$aErrorCodes
$aErrorCodes
Definition: constants.inc.php:26
$aModules
$aModules
Definition: constants.inc.php:29