CakePHP 1.3 DebugKit - 为特定用户设置调试级别

时间:2012-04-04 09:04:37

标签: cakephp cakephp-1.3

我想将特定用户的调试级别设置为2.如果我使用app_controller.php,那么DebugKit没有显示,只有我在core.php中设置它但我只想这样做一个特定的登录用户。

最好的方法是什么?


更新 这是我在app_controller.php中的beforeFilter函数中所做的(这不起作用):

if($this->Auth->user('id') == 1)
        Configure::write('debug', 2);

1 个答案:

答案 0 :(得分:2)

你是怎么做到的?

通常情况下,我会在beforeFilter的{​​{1}}中进行此操作并正常工作。

AppController

<强>更新

if (...) {
    Configure::write('debug', 2);
}