Application.php 1.21 KB
Newer Older
Qiang Xue committed
1 2 3 4 5
<?php
/**
 * Application class file.
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright &copy; 2008 Yii Software LLC
Qiang Xue committed
7 8 9 10 11 12 13 14 15 16 17 18 19
 * @license http://www.yiiframework.com/license/
 */

namespace yii\web;

/**
 * Application is the base class for all application classes.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class Application extends \yii\base\Application
{
Qiang Xue committed
20 21 22 23 24 25 26 27 28
	/**
	 * Sets default path aliases.
	 */
	public function registerDefaultAliases()
	{
		parent::registerDefaultAliases();
		\Yii::$aliases['@www'] = dirname($_SERVER['SCRIPT_FILENAME']);
	}

Qiang Xue committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42
	/**
	 * Processes the request.
	 * @return integer the exit status of the controller action (0 means normal, non-zero values mean abnormal)
	 */
	public function processRequest()
	{
		$route = $this->resolveRequest();
		return $this->runController($route, null);
	}

	protected function resolveRequest()
	{
		return array();
	}
Qiang Xue committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

	/**
	 * Registers the core application components.
	 * @see setComponents
	 */
	public function registerCoreComponents()
	{
		parent::registerCoreComponents();
		$this->setComponents(array(
			'request' => array(
				'class' => 'yii\web\Request',
			),
			'response' => array(
				'class' => 'yii\web\Response',
			),
		));
	}
Qiang Xue committed
60
}