blob: aab04eef18c1ec25a1609cf3b250068bf0bcd45d (
plain)
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
|
<?php
/**
* TApplication class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado
*/
namespace Prado;
/**
* TApplicationMode class.
* TApplicationMode defines the possible mode that an application can be set at by
* setting {@link TApplication::setMode Mode}.
* In particular, the following modes are defined
* - Off: the application is not running. Any request to the application will obtain an error.
* - Debug: the application is running in debug mode.
* - Normal: the application is running in normal production mode.
* - Performance: the application is running in performance mode.
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado
* @since 3.0.4
*/
class TApplicationMode extends TEnumerable
{
const Off='Off';
const Debug='Debug';
const Normal='Normal';
const Performance='Performance';
}
|