When we using an ActionClass to define an actions located in this class we override actions method. Consider the official example:
class UpdateAction extends CAction
{
public function run()
{
// place the action logic here
}
}
class PostController extends CController
{
public function actions()
{
return array(
'edit'=>'application.controllers.post.UpdateAction',
);
}
}
Question: Is it true that the actions method called to check the additional actions which may be called?