類別ActionInfo的繼承圖:

公開方法(Public Methods) | |
| ActionInfo ($actionParamName, $actionParamValue) | |
| getActionParamName () | |
| getActionParamValue () | |
定義在 actioninfo.class.php 檔案之第 12 行.
|
||||||||||||
|
Constructor. In the following request: controller.php/?action=ViewArticle&articleId=7 the parameter name would be 'action' and the action name would be 'ViewArticle'. The default name for the parameter name is 'action' but it can be changed when constructing the controller. The name of the action is specified by using the action maps when creating the controller.
定義在 actioninfo.class.php 檔案之第 30 行. 參考 Object::Object(). 00031 { 00032 $this->Object(); 00033 00034 $this->_actionParamName = $actionParamName; 00035 $this->_actionParamValue = $actionParamValue; 00036 }
|
|
|
Returns the name of the parameter used to trigger this action.
定義在 actioninfo.class.php 檔案之第 43 行.
|
|
|
Returns the vlaue of the parameter that triggered this action.
定義在 actioninfo.class.php 檔案之第 53 行.
|