Public Member Functions | |
| ActionInfo ($actionParamName, $actionParamValue) | |
| getActionParamName () | |
| getActionParamValue () | |
Definition at line 12 of file actioninfo.class.php.
| ActionInfo.ActionInfo | ( | $ | actionParamName, | |
| $ | actionParamValue | |||
| ) |
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.
| actionParamName | The name of the parameter that was used to trigger the action. | |
| actionParamValue | The value of the action parameter that triggered this action. |
Definition at line 30 of file actioninfo.class.php.
| ActionInfo.getActionParamName | ( | ) |
Returns the name of the parameter used to trigger this action.
Definition at line 43 of file actioninfo.class.php.
| ActionInfo.getActionParamValue | ( | ) |
Returns the vlaue of the parameter that triggered this action.
Definition at line 53 of file actioninfo.class.php.