You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
13 years ago
|
<?php
|
||
|
/**
|
||
|
* Controller class file.
|
||
|
*
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright © 2008-2012 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\web;
|
||
|
|
||
|
use yii\base\Action;
|
||
|
use yii\base\Exception;
|
||
|
use yii\base\HttpException;
|
||
|
|
||
|
/**
|
||
|
* Controller is the base class of Web controllers.
|
||
|
*
|
||
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class Controller extends \yii\base\Controller
|
||
|
{
|
||
|
/**
|
||
|
* Returns the request parameters that will be used for action parameter binding.
|
||
|
* Default implementation simply returns an empty array.
|
||
|
* Child classes may override this method to customize the parameters to be provided
|
||
|
* for action parameter binding (e.g. `$_GET`).
|
||
|
* @return array the request parameters (name-value pairs) to be used for action parameter binding
|
||
|
*/
|
||
|
public function getActionParams()
|
||
|
{
|
||
|
return $_GET;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* This method is invoked when the request parameters do not satisfy the requirement of the specified action.
|
||
|
* The default implementation will throw an exception.
|
||
|
* @param Action $action the action being executed
|
||
|
* @param Exception $exception the exception about the invalid parameters
|
||
|
* @throws HttpException $exception a 400 HTTP exception
|
||
|
*/
|
||
|
public function invalidActionParams($action, $exception)
|
||
|
{
|
||
|
throw new HttpException(400, \Yii::t('yii', 'Your request is invalid.'));
|
||
|
}
|
||
|
}
|