コード例 #1
0
ファイル: Uninstall.php プロジェクト: pi-module/uclient
 /**
  * {@inheritDoc}
  */
 protected function attachDefaultListeners()
 {
     $events = $this->events;
     $events->attach('uninstall.post', array($this, 'updateConfig'), 1);
     parent::attachDefaultListeners();
     return $this;
 }
コード例 #2
0
ファイル: Uninstall.php プロジェクト: Andyyang1981/pi
 /**
  * {@inheritDoc}
  */
 protected function attachDefaultListeners()
 {
     $events = $this->events;
     $events->attach('uninstall.pre', array($this, 'checkModules'), 1000);
     $events->attach('uninstall.post', array($this, 'dropTables'), -1000);
     parent::attachDefaultListeners();
     return $this;
 }