Yii2 framework backup
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.

41 lines
1.1 KiB

13 years ago
<?php
/**
* InlineAction class file.
13 years ago
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008-2012 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
namespace yii\base;
13 years ago
/**
* InlineAction represents an action that is defined as a controller method.
13 years ago
*
13 years ago
* The name of the controller method should be in the format of `actionXyz`
* where `Xyz` stands for the action ID (e.g. `actionIndex`).
13 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
13 years ago
*/
class InlineAction extends Action
13 years ago
{
/**
13 years ago
* Runs the action with the supplied parameters.
* This method is invoked by the controller.
* @param array $params the input parameters in terms of name-value pairs.
* @return boolean whether the input parameters are valid
13 years ago
*/
13 years ago
public function runWithParams($params)
13 years ago
{
$method = new \ReflectionMethod($this->controller, 'action' . $this->id);
13 years ago
$params = $this->normalizeParamsByMethod($method, $params);
if ($params !== false) {
13 years ago
call_user_func_array(array($this->controller, 'action' . $this->id), $params);
return true;
} else {
return false;
}
13 years ago
}
}