HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
Yii2DebugModule.php
Go to the documentation of this file.
1 <?php
2 
10 class Yii2DebugModule extends CWebModule
11 {
12  public function beforeControllerAction($controller, $action)
13  {
14  if (
15  parent::beforeControllerAction($controller, $action) &&
16  $this->owner->checkAccess()
17  ) {
18  // Отключение дебагера на страницах просмотра ранее сохраненных логов
19  Yii::app()->detachEventHandler('onEndRequest', array($this->owner, 'onEndRequest'));
20  // Отключение сторонних шаблонизаторов
21  Yii::app()->setComponents(array('viewRenderer' => array('enabled' => false)), false);
22  // Сброс скрипта для вывода тулбара
23  Yii::app()->getClientScript()->reset();
24  // Clears client script map defined in app config
25  Yii::app()->getClientScript()->scriptMap = array();
26  return true;
27  }
28  else
29  return false;
30  }
31 
32  private $_owner;
33 
37  public function getOwner()
38  {
39  return $this->_owner;
40  }
41 
45  public function setOwner($owner)
46  {
47  $this->_owner = $owner;
48  }
49 }