Cheetah
constants.inc.php
Go to the documentation of this file.
1 <?php
2 
8 //--- User statuses ---//
9 if(!defined("USER_STATUS_NEW")) define("USER_STATUS_NEW", "new");
10 if(!defined("USER_STATUS_OLD")) define("USER_STATUS_OLD", "old");
11 if(!defined("USER_STATUS_KICK")) define("USER_STATUS_KICK", "kick");
12 if(!defined("USER_STATUS_IDLE")) define("USER_STATUS_IDLE", "idle");
13 if(!defined("USER_STATUS_TYPE")) define("USER_STATUS_TYPE", "type");
14 
15 if(!defined("USER_STATUS_ONLINE")) define("USER_STATUS_ONLINE", "online");
16 if(!defined("USER_STATUS_BUSY")) define("USER_STATUS_BUSY", "busy");
17 if(!defined("USER_STATUS_AWAY")) define("USER_STATUS_AWAY", "away");
18 
19 //--- Room statuses ---//
20 if(!defined("ROOM_STATUS_NORMAL")) define("ROOM_STATUS_NORMAL", "normal");
21 if(!defined("ROOM_STATUS_DELETE")) define("ROOM_STATUS_DELETE", "delete");
22 
23 //--- Chat user types ---//
24 if(!defined("CHAT_TYPE_MODER")) define("CHAT_TYPE_MODER", "moder");
25 if(!defined("CHAT_TYPE_FULL")) define("CHAT_TYPE_FULL", "full");
26 if(!defined("CHAT_TYPE_ADMIN")) define("CHAT_TYPE_ADMIN", "admin");
27 
28 $aInfo = array(
29  'mode' => "as3",
30  'title' => "A/V Chat",
31  'version' => "7.2.0000",
32  'code' => "chat_7.2.0000",
33  'author' => "Cheetah",
34  'authorUrl' => "https://www.cheetahwsb.com"
35 );
36 $aModules = array(
37  'admin' => array(
38  'caption' => 'Ray Chat Admin',
39  'parameters' => array('nick', 'password'),
40  'js' => array(),
41  'inline' => false,
42  'vResizable' => true,
43  'hResizable' => true,
44  'reloadable' => true,
45  'layout' => array('top' => 0, 'left' => 0, 'width' => 800, 'height' => 600),
46  'minSize' => array('width' => 700, 'height' => 600),
47  'div' => array()
48  ),
49  'user' => array(
50  'caption' => 'Ray Chat',
51  'parameters' => array('id', 'password'),
52  'js' => array(),
53  'inline' => true,
54  'vResizable' => false,
55  'hResizable' => false,
56  'reloadable' => true,
57  'layout' => array('top' => 0, 'left' => 0, 'width' => "100%", 'height' => 600),
58  'minSize' => array('width' => 700, 'height' => 600),
59  'div' => array(),
60  )
61 );
php
$aInfo
$aInfo
Definition: constants.inc.php:21
$aModules
$aModules
Definition: constants.inc.php:29