How can I disable yii-debug-toolbar on a specific view?

后端 未结 8 1410
你的背包
你的背包 2021-02-02 12:58

How can I disable yii-debug-toolbar on a specific view especially on partial rendered views?

Is this possible?

p.s. Yii-debug-toolbar

8条回答
  •  被撕碎了的回忆
    2021-02-02 13:35

    public function beforeAction($action) {
    
        if ( $action->controller->id=='elfinder' && Yii::$app->getModule('debug') )
            Yii::$app->getModule('debug')->instance->allowedIPs = [];
        return parent::beforeAction($action);
    }
    

提交回复
热议问题