system system.base system.caching system.caching.dependencies system.collections system.console system.db system.db.ar system.db.schema system.db.schema.mssql system.db.schema.mysql system.db.schema.oci system.db.schema.pgsql system.db.schema.sqlite system.i18n system.i18n.gettext system.logging system.utils system.validators system.web system.web.actions system.web.auth system.web.filters system.web.helpers system.web.renderers system.web.services system.web.widgets system.web.widgets.captcha system.web.widgets.pagers

CController

system.web
继承 class CController » CBaseController » CComponent
子类 CExtController
可用自 1.0
版本 $Id$
CController manages a set of actions which deal with the corresponding user requests.

Through the actions, CController coordinates the data flow between models and views.

When a user requests an action 'XYZ', CController will do one of the following: 1. Method-based action: call method 'actionXYZ' if it exists; 2. Class-based action: create an instance of class 'XYZ' if the class is found in the action class map (specified via actions(), and execute the action; 3. Call missingAction(), which by default will raise a 404 HTTP exception.

If the user does not specify an action, CController will run the action specified by defaultAction, instead.

CController may be configured to execute filters before and after running actions. Filters preprocess/postprocess the user request/response and may quit executing actions if needed. They are executed in the order they are specified. If during the execution, any of the filters returns true, the rest filters and the action will no longer get executed.

Filters can be individual objects, or methods defined in the controller class. They are specified by overriding filters() method. The following is an example of the filter specification:
array(
    'accessControl - login',
    'ajaxOnly + search',
    array(
        'COutputCache + list',
        'duration'=>300,
    ),
)
The above example declares three filters: accessControl, ajaxOnly, COutputCache. The first two are method-based filters (defined in CController), which refer to filtering methods in the controller class; while the last refers to a object-based filter whose class is 'system.web.widgets.COutputCache' and the 'duration' property is initialized as 300 (s).

For method-based filters, a method named 'filterXYZ($filterChain)' in the controller class will be executed, where 'XYZ' stands for the filter name as specified in filters(). Note, inside the filter method, you must call $filterChain->run() if the action should be executed. Otherwise, the filtering process would stop at this filter.

Filters can be specified so that they are executed only when running certain actions. For method-based filters, this is done by using '+' and '-' operators in the filter specification. The '+' operator means the filter runs only when the specified actions are requested; while the '-' operator means the filter runs only when the requested action is not among those actions. For object-based filters, the '+' and '-' operators are following the class name.

公共属性

隐藏继承的属性

属性类型描述被定义在
action CAction the action currently being executed, null if no active action. CController
cachingStack CStack stack of COutputCache objects CController
clips CMap Returns the list of clips. CController
defaultAction string the name of the default action. CController
id string ID of the controller CController
layout mixed the name of the layout to be applied to this controller's views. CController
module CWebModule the module that this controller belongs to. CController
pageTitle string the page title. CController
uniqueId string the controller ID that is prefixed with the module ID (if any). CController
viewPath string Returns the directory containing view files for this controller. CController

公共方法

隐藏继承的方法

方法描述被定义在
__call() Calls the named method which is not a class method. CComponent
__construct() CController
__get() Returns a property value, an event handler list or a behavior based on its name. CComponent
__isset() Checks if a property value is null. CComponent
__set() Sets value of a component property. CComponent
__unset() Sets a component property to be null. CComponent
accessRules() Returns the access rules for this controller. CController
actions() Returns a list of external action classes. CController
asa() Returns the named behavior object. CComponent
attachBehavior() Attaches a behavior to this component. CComponent
attachBehaviors() Attaches a list of behaviors to the component. CComponent
attachEventHandler() Attaches an event handler to an event. CComponent
beginCache() Begins fragment caching. CBaseController
beginClip() Begins recording a clip. CBaseController
beginContent() Begins the rendering of content that is to be decorated by the specified view. CBaseController
beginWidget() Creates a widget and executes it. CBaseController
behaviors() Returns a list of behaviors that this controller should behave as. CController
canGetProperty() Determines whether a property can be read. CComponent
canSetProperty() Determines whether a property can be set. CComponent
clearPageStates() Removes all page states. CController
createAbsoluteUrl() Creates an absolute URL for the specified action defined in this controller. CController
createAction() Creates the action instance based on the action name. CController
createUrl() Creates a relative URL for the specified action defined in this controller. CController
createWidget() Creates a widget and initializes it. CBaseController
detachBehavior() Detaches a behavior from the component. CComponent
detachBehaviors() Detaches all behaviors from the component. CComponent
detachEventHandler() Detaches an existing event handler. CComponent
disableBehavior() Disables an attached behavior. CComponent
disableBehaviors() Disables all behaviors attached to this component. CComponent
enableBehavior() Enables an attached behavior. CComponent
enableBehaviors() Enables all behaviors attached to this component. CComponent
endCache() Ends fragment caching. CBaseController
endClip() Ends recording a clip. CBaseController
endContent() Ends the rendering of content. CBaseController
endWidget() Ends the execution of the named widget. CBaseController
filterAccessControl() The filter method for 'accessControl' filter. CController
filterAjaxOnly() The filter method for 'ajaxOnly' filter. CController
filterPostOnly() The filter method for 'postOnly' filter. CController
filters() Returns the filter configurations. CController
getAction() CController
getCachingStack() CController
getClips() Returns the list of clips. CController
getEventHandlers() Returns the list of attached event handlers for an event. CComponent
getId() CController
getLayoutFile() Looks for the view script file for a layout. CController
getModule() CController
getPageState() Returns a persistent page state value. CController
getPageTitle() CController
getUniqueId() CController
getViewFile() Looks for the view file according to the given view name. CController
getViewPath() Returns the directory containing view files for this controller. CController
hasEvent() Determines whether an event is defined. CComponent
hasEventHandler() Checks whether the named event has attached handlers. CComponent
hasProperty() Determines whether a property is defined. CComponent
init() Initializes the controller. CController
isCachingStackEmpty() CController
missingAction() Handles the request whose action is not recognized. CController
paginate() Generates pagination information. CController
processDynamicOutput() Postprocesses the dynamic output. CController
processOutput() Postprocesses the output generated by render(). CController
raiseEvent() Raises an event. CComponent
recordCachingAction() Records a method call when an output cache is in effect. CController
redirect() Redirects the browser to the specified URL or route (controller/action). CController
refresh() Refreshes the current page. CController
render() Renders a view with a layout. CController
renderDynamic() Renders dynamic content returned by the specified callback. CController
renderDynamicInternal() This method is internally used. CController
renderFile() Renders a view file. CBaseController
renderInternal() Renders a view file. CBaseController
renderPartial() Renders a view. CController
renderText() Renders a static text string. CController
resolveViewFile() Finds a view file based on its name. CController
run() Runs the named action. CController
runAction() Runs the action after passing through all filters. CController
runActionWithFilters() Runs an action with the specified filters. CController
setAction() CController
setPageState() Saves a persistent page state value. CController
setPageTitle() CController
widget() Creates a widget and executes it. CBaseController

受保护的方法

隐藏继承的方法

方法描述被定义在
afterAction() This method is invoked right after an action is executed. CController
beforeAction() This method is invoked right before an action is to be executed (after all possible filters.) CController
createActionFromMap() Creates the action instance based on the action map. CController
loadPageStates() Loads page states from a hidden input. CController
replaceDynamicOutput() Replaces the dynamic content placeholders with actual content. CController
savePageStates() Saves page states as a base64 string. CController

属性详情

action 属性
public CAction getAction()
public void setAction(CAction $value)

the action currently being executed, null if no active action.

cachingStack 属性 只读
public CStack getCachingStack(boolean $createIfNull=true)

stack of COutputCache objects

clips 属性 只读
public CMap getClips()

Returns the list of clips. A clip is a named piece of rendering result that can be inserted at different places.

参见

defaultAction 属性
public string $defaultAction;

the name of the default action. Defaults to 'index'.

id 属性 只读
public string getId()

ID of the controller

layout 属性
public mixed $layout;

the name of the layout to be applied to this controller's views. Defaults to null, meaning the application layout is used. If it is false, no layout will be applied. Since version 1.0.3, the module layout will be used if the controller belongs to a module and this layout property is null.

module 属性 只读 (自版本 v1.0.3 可用)

the module that this controller belongs to. It returns null if the controller does not belong to any module

pageTitle 属性
public string getPageTitle()
public void setPageTitle(string $value)

the page title. Defaults to the controller name and the action name.

uniqueId 属性 只读 (自版本 v1.0.3 可用)
public string getUniqueId()

the controller ID that is prefixed with the module ID (if any).

viewPath 属性 只读
public string getViewPath()

Returns the directory containing view files for this controller. The default implementation returns 'protected/views/ControllerID'. Child classes may override this method to use customized view path. If the controller belongs to a module (since version 1.0.3), the default view path is the module view path appended with the controller ID.

方法详情

__construct() 方法
public void __construct(string $id, CWebModule $module=NULL)
$id string id of this controller
$module CWebModule the module that this controller belongs to. This parameter has been available since version 1.0.3.

accessRules() 方法
public array accessRules()
{return} array list of access rules. See CAccessControlFilter for details about rule specification.

Returns the access rules for this controller. Override this method if you use the accessControl filter.

actions() 方法
public array actions()
{return} array list of external action classes

Returns a list of external action classes. Array keys are action IDs, and array values are the corresponding action class in dot syntax (e.g. 'edit'=>'application.controllers.article.EditArticle') or arrays representing the configuration of the actions, such as the following,

return array(
    'action1'=>'path.to.Action1Class',
    'action2'=>array(
        'class'=>'path.to.Action2Class',
        'property1'=>'value1',
        'property2'=>'value2',
    ),
);
Derived classes may override this method to declare external actions.

Note, in order to inherit actions defined in the parent class, a child class needs to merge the parent actions with child actions using functions like array_merge().

Since version 1.0.1, you may import actions from an action provider (such as a widget, see CWidget::actions), like the following:
return array(
    ...other actions...
    // import actions declared in ProviderClass::actions()
    // the action IDs will be prefixed with 'pro.'
    'pro.'=>'path.to.ProviderClass',
    // similar as above except that the imported actions are
    // configured with the specified initial property values
    'pro2.'=>array(
        'class'=>'path.to.ProviderClass',
        'action1'=>array(
            'property1'=>'value1',
        ),
        'action2'=>array(
            'property2'=>'value2',
        ),
    ),
)


In the above, we differentiate action providers from other action declarations by the array keys. For action providers, the array keys must contain a dot. As a result, an action ID 'pro2.action1' will be resolved as the 'action1' action declared in the 'ProviderClass'.

参见

afterAction() 方法
protected void afterAction(CAction $action)
$action CAction the action just executed.

This method is invoked right after an action is executed. You may override this method to do some postprocessing for the action.

beforeAction() 方法
protected boolean beforeAction(CAction $action)
$action CAction the action to be executed.
{return} boolean whether the action should be executed.

This method is invoked right before an action is to be executed (after all possible filters.) You may override this method to do last-minute preparation for the action.

behaviors() 方法 (自版本 v1.0.6 可用)
public array behaviors()
{return} array the behavior configurations (behavior name=>behavior configuration)

Returns a list of behaviors that this controller should behave as. The return value should be an array of behavior configurations indexed by behavior names. Each behavior configuration can be either a string specifying the behavior class or an array of the following structure:

'behaviorName'=>array(
    'class'=>'path.to.BehaviorClass',
    'property1'=>'value1',
    'property2'=>'value2',
)


Note, the behavior classes must implement IBehavior or extend from CBehavior. Behaviors declared in this method will be attached to the controller when it is instantiated.

For more details about behaviors, see CComponent.

clearPageStates() 方法
public void clearPageStates()

Removes all page states.

createAbsoluteUrl() 方法
public string createAbsoluteUrl(string $route, array $params=array ( ), string $schema='', string $ampersand='&')
$route string the URL route. This should be in the format of 'ControllerID/ActionID'. If the ControllerPath is not present, the current controller ID will be prefixed to the route. If the route is empty, it is assumed to be the current action.
$params array additional GET parameters (name=>value). Both the name and value will be URL-encoded.
$schema string schema to use (e.g. http, https). If empty, the schema used for the current request will be used.
$ampersand string the token separating name-value pairs in the URL.
{return} string the constructed URL

Creates an absolute URL for the specified action defined in this controller.

createAction() 方法
public CAction createAction(string $actionID)
$actionID string ID of the action. If empty, the default action will be used.
{return} CAction the action instance, null if the action does not exist.

Creates the action instance based on the action name. The action can be either an inline action or an object. The latter is created by looking up the action map specified in actions.

参见

createActionFromMap() 方法 (自版本 v1.0.1 可用)
protected CAction createActionFromMap(array $actionMap, string $actionID, string $requestActionID, array $config=array ( ))
$actionMap array the action map
$actionID string the action ID that has its prefix stripped off
$requestActionID string the originally requested action ID
$config array the action configuration that should be applied on top of the configuration specified in the map
{return} CAction the action instance, null if the action does not exist.

Creates the action instance based on the action map. This method will check to see if the action ID appears in the given action map. If so, the corresponding configuration will be used to create the action instance.

createUrl() 方法
public string createUrl(string $route, array $params=array ( ), string $ampersand='&')
$route string the URL route. This should be in the format of 'ControllerID/ActionID'. If the ControllerID is not present, the current controller ID will be prefixed to the route. If the route is empty, it is assumed to be the current action. Since version 1.0.3, if the controller belongs to a module, the module ID will be prefixed to the route. (If you do not want the module ID prefix, the route should start with a slash '/'.)
$params array additional GET parameters (name=>value). Both the name and value will be URL-encoded. If the name is '#', the corresponding value will be treated as an anchor and will be appended at the end of the URL. This anchor feature has been available since version 1.0.1.
$ampersand string the token separating name-value pairs in the URL.
{return} string the constructed URL

Creates a relative URL for the specified action defined in this controller.

filterAccessControl() 方法
public void filterAccessControl(CFilterChain $filterChain)
$filterChain CFilterChain the filter chain that the filter is on.

The filter method for 'accessControl' filter. This filter is a wrapper of CAccessControlFilter. To use this filter, you must override accessRules method.

filterAjaxOnly() 方法
public void filterAjaxOnly(CFilterChain $filterChain)
$filterChain CFilterChain the filter chain that the filter is on.

The filter method for 'ajaxOnly' filter. This filter reports an error if the applied action is receiving a non-AJAX request.

filterPostOnly() 方法
public void filterPostOnly(CFilterChain $filterChain)
$filterChain CFilterChain the filter chain that the filter is on.

The filter method for 'postOnly' filter. This filter reports an error if the applied action is receiving a non-POST request.

filters() 方法
public array filters()
{return} array a list of filter configurations.

Returns the filter configurations.

By overriding this method, child classes can specify filters to be applied to actions.

This method returns an array of filter specifications. Each array element specify a single filter.

For a method-based filter (called inline filter), it is specified as 'FilterName[ +|- Action1, Action2, ...]', where the '+' ('-') operators describe which actions should be (should not be) applied with the filter.

For a class-based filter, it is specified as an array like the following:

array(
    'FilterClass[ +|- Action1, Action2, ...]',
    'name1'=>'value1',
    'name2'=>'value2',
    ...
)
where the name-value pairs will be used to initialize the properties of the filter.

Note, in order to inherit filters defined in the parent class, a child class needs to merge the parent filters with child filters using functions like array_merge().

参见

getAction() 方法
public CAction getAction()
{return} CAction the action currently being executed, null if no active action.

getCachingStack() 方法
public CStack getCachingStack(boolean $createIfNull=true)
$createIfNull boolean whether to create a stack if it does not exist yet. Defaults to true.
{return} CStack stack of COutputCache objects

getClips() 方法
public CMap getClips()
{return} CMap the list of clips

Returns the list of clips. A clip is a named piece of rendering result that can be inserted at different places.

参见

getId() 方法
public string getId()
{return} string ID of the controller

getLayoutFile() 方法
public string getLayoutFile(mixed $layoutName)
$layoutName mixed layout name
{return} string the view file for the layout. False if the view file cannot be found

Looks for the view script file for a layout. This method will look for the view under the application's layoutPath. If the view name starts with '/', the view will be looked for under the application's viewPath. If the view name is null, the application's default layout will be used. If the view name is false, this method simply returns false. Since version 1.0.2, the view name can also refer to a path alias if it contains dot characters. Since version 1.0.3, if the controller belongs to a module, the view file will be searched under the module layout path, and if the view name is null, the module default layout will be used.

getModule() 方法 (自版本 v1.0.3 可用)
public CWebModule getModule()
{return} CWebModule the module that this controller belongs to. It returns null if the controller does not belong to any module

getPageState() 方法
public mixed getPageState(string $name, mixed $defaultValue=NULL)
$name string the state name
$defaultValue mixed the value to be returned if the named state is not found
{return} mixed the page state value

Returns a persistent page state value. A page state is a variable that is persistent across POST requests of the same page. In order to use persistent page states, the form(s) must be stateful which are generated using CHtml::statefulForm.

getPageTitle() 方法
public string getPageTitle()
{return} string the page title. Defaults to the controller name and the action name.

getUniqueId() 方法 (自版本 v1.0.3 可用)
public string getUniqueId()
{return} string the controller ID that is prefixed with the module ID (if any).

getViewFile() 方法
public string getViewFile(string $viewName)
$viewName string name of the view (without file extension)
{return} string the view file path, false if the view file does not exist

Looks for the view file according to the given view name. This method will look for the view under the controller's viewPath. If the view name starts with '/', the view will be looked for under the application's viewPath. The view script file is named as "ViewName.php". A localized view file may be returned if internationalization is needed. See CApplication::findLocalizedFile for more details. Since version 1.0.2, the view name can also refer to a path alias if it contains dot characters. Since version 1.0.3, if the controller belongs to a module, the view file will be searched under the module view path.

getViewPath() 方法
public string getViewPath()
{return} string the directory containing the view files for this controller. Defaults to 'protected/views/ControllerID'.

Returns the directory containing view files for this controller. The default implementation returns 'protected/views/ControllerID'. Child classes may override this method to use customized view path. If the controller belongs to a module (since version 1.0.3), the default view path is the module view path appended with the controller ID.

init() 方法 (自版本 v1.0.1 可用)
public void init()

Initializes the controller. This method is called by the application before the controller starts to execute. You may override this method to perform the needed initialization for the controller.

isCachingStackEmpty() 方法 (自版本 v1.0.5 可用)
public whether isCachingStackEmpty()
{return} whether the caching stack is empty. If not empty, it means currently there are some output cache in effect. Note, the return result of this method may change when it is called in different output regions, depending on the partition of output caches.

loadPageStates() 方法
protected array loadPageStates()
{return} array the loaded page states

Loads page states from a hidden input.

missingAction() 方法
public void missingAction(string $actionID)
$actionID string the missing action name

Handles the request whose action is not recognized. This method is invoked when the controller cannot find the requested action. The default implementation simply throws an exception.

paginate() 方法
public CPagination paginate(integer $itemCount, integer $pageSize=NULL, string $pageVar=NULL)
$itemCount integer the total item count
$pageSize integer the page size. See CPagination for default value.
$pageVar string the name of the GET variable storing the current page index. See CPagination for default value.
{return} CPagination the pagination information

Generates pagination information. This method can be used to generate pagination information given item count and page size. The pagination information can then be passed to pagers for corresponding rendering.

Note: this method has been deprecated since version 1.0.1. You should directly use "new CPagination" to create a pagination object.

processDynamicOutput() 方法 (自版本 v1.0.4 可用)
public string processDynamicOutput(string $output)
$output string output to be processed
{return} string the processed output

Postprocesses the dynamic output. This method is internally used. Do not call this method directly.

processOutput() 方法
public string processOutput(string $output)
$output string the output generated by the current action
{return} string the output that has been processed.

Postprocesses the output generated by render(). This method is invoked at the end of render() and renderText(). If there are registered client scripts, this method will insert them into the output at appropriate places. If there are dynamic contents, they will also be inserted. This method may also save the persistent page states in hidden fields of stateful forms in the page.

recordCachingAction() 方法
public void recordCachingAction(string $context, string $method, array $params)
$context string a property name of the controller. It refers to an object whose method is being called. If empty it means the controller itself.
$method string the method name
$params array parameters passed to the method

Records a method call when an output cache is in effect. When the content is served from the output cache, the recorded method will be re-invoked.

参见

redirect() 方法
public void redirect(mixed $url, boolean $terminate=true, integer $statusCode=302)
$url mixed the URL to be redirected to. If the parameter is an array, the first element must be a route to a controller action and the rest are GET parameters in name-value pairs.
$terminate boolean whether to terminate the current application after calling this method
$statusCode integer the HTTP status code. Defaults to 302. See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for details about HTTP status code. This parameter has been available since version 1.0.4.

Redirects the browser to the specified URL or route (controller/action).

refresh() 方法
public void refresh(boolean $terminate=true, string $anchor='')
$terminate boolean whether to terminate the current application after calling this method
$anchor string the anchor that should be appended to the redirection URL. Defaults to empty. Make sure the anchor starts with '#' if you want to specify it. The parameter has been available since version 1.0.7.

Refreshes the current page. The effect of this method call is the same as user pressing the refresh button on the browser (without post data).

render() 方法
public string render(string $view, array $data=NULL, boolean $return=false)
$view string name of the view to be rendered. See getViewFile for details about how the view script is resolved.
$data array data to be extracted into PHP variables and made available to the view script
$return boolean whether the rendering result should be returned instead of being displayed to end users.
{return} string the rendering result. Null if the rendering result is not required.

Renders a view with a layout.

This method first calls renderPartial to render the view (called content view). It then renders the layout view which may embed the content view at appropriate place. In the layout view, the content view rendering result can be accessed via variable $content. At the end, it calls processOutput to insert scripts and dynamic contents if they are available.

By default, the layout view script is "protected/views/layouts/main.php". This may be customized by changing layout.

renderDynamic() 方法
public void renderDynamic(callback $callback)
$callback callback a PHP callback which returns the needed dynamic content. When the callback is specified as a string, it will be first assumed to be a method of the current controller class. If the method does not exist, it is assumed to be a global PHP function. Note, the callback should return the dynamic content instead of echoing it.

Renders dynamic content returned by the specified callback. This method is used together with COutputCache. Dynamic contents will always show as their latest state even if the content surrounding them is being cached. This is especially useful when caching pages that are mostly static but contain some small dynamic regions, such as username or current time. We can use this method to render these dynamic regions to ensure they are always up-to-date.

The first parameter to this method should be a valid PHP callback, while the rest parameters will be passed to the callback.

Note, the callback and its parameter values will be serialized and saved in cache. Make sure they are serializable.

renderDynamicInternal() 方法
public void renderDynamicInternal(callback $callback, array $params)
$callback callback a PHP callback which returns the needed dynamic content.
$params array parameters passed to the PHP callback

This method is internally used.

参见

renderPartial() 方法
public string renderPartial(string $view, array $data=NULL, boolean $return=false, boolean $processOutput=false)
$view string name of the view to be rendered. See getViewFile for details about how the view script is resolved.
$data array data to be extracted into PHP variables and made available to the view script
$return boolean whether the rendering result should be returned instead of being displayed to end users
$processOutput boolean whether the rendering result should be postprocessed using processOutput. This parameter should be set true if renderPartial is the only method used to generate the output when handling a user request.
{return} string the rendering result. Null if the rendering result is not required.

Renders a view.

The named view refers to a PHP script (resolved via getViewFile) that is included by this method. If $data is an associative array, it will be extracted as PHP variables and made available to the script.

This method differs from render() in that it does not apply a layout to the rendered result. It is thus mostly used in rendering a partial view, or an AJAX response.

renderText() 方法
public string renderText(string $text, boolean $return=false)
$text string the static text string
$return boolean whether the rendering result should be returned instead of being displayed to end users.
{return} string the rendering result. Null if the rendering result is not required.

Renders a static text string. The string will be inserted in the current controller layout and returned back.

参见

replaceDynamicOutput() 方法
protected string replaceDynamicOutput(array $matches)
$matches array matches
{return} string the replacement

Replaces the dynamic content placeholders with actual content. This is a callback function used internally.

参见

resolveViewFile() 方法 (自版本 v1.0.3 可用)
public mixed resolveViewFile(string $viewName, string $viewPath, string $basePath)
$viewName string the view name
$viewPath string the directory that is used to search for a relative view name
$basePath string the directory that is used to search for an absolute view name
{return} mixed the view file path. False if the view file does not exist.

Finds a view file based on its name. The view name can be in one of the following formats:

  • absolute view: the view name starts with a slash '/'.
  • aliased view: the view name contains dots and refers to a path alias. The view file is determined by calling YiiBase::getPathOfAlias().
  • relative view: otherwise.
For absolute view and relative view, the corresponding view file is a PHP file whose name is the same as the view name. The file is located under a specified directory. This method will call CApplication::findLocalizedFile to search for a localized file, if any.

run() 方法
public void run(string $actionID)
$actionID string action ID

Runs the named action. Filters specified via filters() will be applied.

runAction() 方法
public void runAction(CAction $action)
$action CAction action to run

Runs the action after passing through all filters. This method is invoked by runActionWithFilters after all possible filters have been executed and the action starts to run.

runActionWithFilters() 方法
public void runActionWithFilters(CAction $action, array $filters)
$action CAction the action to be executed.
$filters array list of filters to be applied to the action.

Runs an action with the specified filters. A filter chain will be created based on the specified filters and the action will be executed then.

savePageStates() 方法
protected void savePageStates(array $states, string $output)
$states array the states to be saved.
$output string the output to be modified. Note, this is passed by reference.

Saves page states as a base64 string.

setAction() 方法
public void setAction(CAction $value)
$value CAction the action currently being executed.

setPageState() 方法
public void setPageState(string $name, mixed $value, mixed $defaultValue=NULL)
$name string the state name
$value mixed the page state value
$defaultValue mixed the default page state value. If this is the same as the given value, the state will be removed from persistent storage.

Saves a persistent page state value. A page state is a variable that is persistent across POST requests of the same page. In order to use persistent page states, the form(s) must be stateful which are generated using CHtml::statefulForm.

setPageTitle() 方法
public void setPageTitle(string $value)
$value string the page title.