mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 15:24:07 +01:00
35 lines
792 B
PHP
35 lines
792 B
PHP
<?php
|
|
/**
|
|
* CInlineAction class file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2009 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
|
|
/**
|
|
* CInlineAction represents an action that is defined as a controller method.
|
|
*
|
|
* The method name is like 'actionXYZ' where 'XYZ' stands for the action name.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @version $Id$
|
|
* @package system.web.actions
|
|
* @since 1.0
|
|
*/
|
|
class CInlineAction extends CAction
|
|
{
|
|
/**
|
|
* Runs the action.
|
|
* The action method defined in the controller is invoked.
|
|
* This method is required by {@link CAction}.
|
|
*/
|
|
public function run()
|
|
{
|
|
$method='action'.$this->getId();
|
|
$this->getController()->$method();
|
|
}
|
|
}
|