forked from atkphpframework/achievo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atk.inc
32 lines (26 loc) · 930 Bytes
/
atk.inc
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
<?php
/**
* ATK Include file.. If you strip out stuff you don't need, you
* might have some performance improvement.
* Somethings can't be stripped out.
*/
/**
* @internal This variable indicates where to get all the includes. Usually,
* this is the current dir.
*/
$config_atkroot = "./";
// Atknode is required. Don't remove it.
include_once($config_atkroot."atk/include/initial.inc");
// Uniform textbox sizes
define("TEXT_SMALL", 3);
define("TEXT_LARGE", 10);
// Some uniform colors
define("COLOR_WARNING", "#FCAA60");
define("COLOR_ERROR", "#FF0000");
define("COLOR_OK", "#00FF00");
// Some uniform recordlist highlight color definitions containing the
// color which can be used when the mousepointer hovers over a row
define("COLOR_HIGHLIGHT_WARNING", "#FFCC83");
define("COLOR_HIGHLIGHT_ERROR", "#FF5555");
define("COLOR_HIGHLIGHT_OK", "#66FF66");
?>