afterAction() public method
This method is invoked right after an action is executed.
The method will trigger the EVENT_AFTER_ACTION event. The return value of the method will be used as the action return value.
If you override this method, your code should look like the following:
public function afterAction($action, $result)
{
$result = parent::afterAction($action, $result);
// your custom code here
return $result;
}
| public mixed afterAction ( $action, $result ) | ||
|---|---|---|
| $action | yii\base\Action |
The action just executed. |
| $result | mixed |
The action return result. |
| return | mixed |
The processed action result. |
Please login to continue.