-
Notifications
You must be signed in to change notification settings - Fork 41
/
Yii2DebugModule.php
49 lines (45 loc) · 1.19 KB
/
Yii2DebugModule.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* @author Roman Zhuravlev <zhuravljov@gmail.com>
* @package Yii2Debug
* @since 1.1.13
*
* @property Yii2Debug $owner
*/
class Yii2DebugModule extends CWebModule
{
public function beforeControllerAction($controller, $action)
{
if (
parent::beforeControllerAction($controller, $action) &&
$this->owner->checkAccess()
) {
// Отключение дебагера на страницах просмотра ранее сохраненных логов
Yii::app()->detachEventHandler('onEndRequest', array($this->owner, 'onEndRequest'));
// Отключение сторонних шаблонизаторов
Yii::app()->setComponents(array('viewRenderer' => array('enabled' => false)), false);
// Сброс скрипта для вывода тулбара
Yii::app()->getClientScript()->reset();
// Clears client script map defined in app config
Yii::app()->getClientScript()->scriptMap = array();
return true;
}
else
return false;
}
private $_owner;
/**
* @return Yii2Debug
*/
public function getOwner()
{
return $this->_owner;
}
/**
* @param Yii2Debug $owner
*/
public function setOwner($owner)
{
$this->_owner = $owner;
}
}