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

后端 未结 8 1504
你的背包
你的背包 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:42

    if you want to remove from front end then this is the way:

    1. Goto frontend/config/main-local.php
    2. Comment out these two lines:

    main-local.php

      $config['bootstrap'][] = 'debug';    
      $config['modules']['debug'] = 'yii\debug\Module';
    

    This will remove debug bar from front-end.

提交回复
热议问题