* @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 * @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(); } }