Yii Framework Action Class

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?

Hi

What did you mean "to check the additional actions" ? Give us an example

r=Post/edit will call the action "UpdateAction"