-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.php
More file actions
46 lines (36 loc) · 819 Bytes
/
const.php
File metadata and controls
46 lines (36 loc) · 819 Bytes
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
<?php
// Constants
/**
* Slashes
*/
const DS = DIRECTORY_SEPARATOR; // ...
const BS = '\\'; // BackSlash
const VIEW_CATCH = __DIR__ . DS . 'Views' . DS . 'catch';
const VIEW_SERVER_INFO = __DIR__ . DS . 'Views' . DS . 'server-info';
/**
* Named
*/
const NANO = 'nano';
const ENV = 'environment';
const NS = 'ns';
const TPL = 'tpl';
const CATCH_ = 'catch';
const FORMAT = 'format';
const CHARSET = 'charset';
const TITLE = 'title';
const APP = 'app';
const CONTROLLER = 'controller';
const ACTION = 'action';
const REQUEST = 'request';
const RESPONSE = 'response';
const VIEW = 'view';
const LAYOUT = 'layout';
const CONFIG = 'config';
const COMPONENTS = 'components';
const DIR = 'dir';
/**
* Config
*/
const DEFAULT_NAME = 'default_name';
const SUFIX = 'siffix';
const PREFIX = 'prefix';