简体   繁体   中英

How can i get all action from controller in yii?

I have controller : RolePermissionController.php I wants get all action from this controller, here is my controller. How can i get this ? Any help will be really appreciated.

<?php

class RolepermissionController extends GxController {


    public function actionView($id) {
        $this->render('view', array(
            'model' => $this->loadModel($id, 'Rolepermission'),
        ));
    }

    public function actionCreate() {
        $model = new Rolepermission;


        if (isset($_POST['Rolepermission'])) {
            $model->setAttributes($_POST['Rolepermission']);

            if ($model->save()) {
                if (Yii::app()->getRequest()->getIsAjaxRequest())
                    Yii::app()->end();
                else
                    $this->redirect(array('view', 'id' => $model->RoleID));
            }
        }
                $appControllerPath = Yii::getPathOfAlias('application.controllers'); 
                if(is_dir($appControllerPath))
                    $fileLists = CFileHelper::findFiles($appControllerPath);
                foreach($fileLists as $controllerPath)
                { 
                    $controllerName = substr($controllerPath,  strrpos($controllerPath, DIRECTORY_SEPARATOR)+1,-4);   
                }
        $this->render('create', array( 'model' => $model));
    }

    public function actionUpdate($id) {
        $model = $this->loadModel($id, 'Rolepermission');


        if (isset($_POST['Rolepermission'])) {
            $model->setAttributes($_POST['Rolepermission']);

            if ($model->save()) {
                $this->redirect(array('view', 'id' => $model->RoleID));
            }
        }

        $this->render('update', array(
                'model' => $model,
                ));
    }

    public function actionDelete($id) {
        if (Yii::app()->getRequest()->getIsPostRequest()) {
            $this->loadModel($id, 'Rolepermission')->delete();

            if (!Yii::app()->getRequest()->getIsAjaxRequest())
                $this->redirect(array('admin'));
        } else
            throw new CHttpException(400, Yii::t('app', 'Your request is invalid.'));
    }

    public function actionIndex() {
        $dataProvider = new CActiveDataProvider('Rolepermission');
        $this->render('index', array(
            'dataProvider' => $dataProvider,
        ));
    }

    public function actionAdmin() {
        $model = new Rolepermission('search');
        $model->unsetAttributes();

        if (isset($_GET['Rolepermission']))
            $model->setAttributes($_GET['Rolepermission']);

        $this->render('admin', array(
            'model' => $model,
        ));
    }

}

Use this extension to get actions of controller,

Reference Here: http://www.yiiframework.com/extension/metadata/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM