* @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 * @package Prado * @since 3.0.4 */ class TApplicationMode extends \Prado\TEnumerable { const Off='Off'; const Debug='Debug'; const Normal='Normal'; const Performance='Performance'; }