Application.php 1.52 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
	/**
	 * Processes the request.
	 * @return integer the exit status of the controller action (0 means normal, non-zero values mean abnormal)
	 */
	public function processRequest()
	{
Qiang Xue committed
35
		$route = $this->getUrlManager()->parseUrl($this->getRequest());
Qiang Xue committed
36
		return $this->runAction($route, $_GET);
Qiang Xue committed
37
	}
Qiang Xue committed
38

Qiang Xue committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	/**
	 * Returns the request component.
	 * @return Request the request component
	 */
	public function getRequest()
	{
		return $this->getComponent('request');
	}

	/**
	 * @return UrlManager
	 */
	public function getUrlManager()
	{
		return $this->getComponent('urlManager');
	}

Qiang Xue committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69
	/**
	 * 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
70 71 72
			'urlManager' => array(
				'class' => 'yii\web\UrlManager',
			),
Qiang Xue committed
73 74
		));
	}
Qiang Xue committed
75
}