예제 #1
0
파일: Update.php 프로젝트: Andyyang1981/pi
 /**
  * {@inheritDoc}
  */
 protected function attachDefaultListeners()
 {
     $events = $this->events;
     $events->attach('update.post', array($this, 'updateCarousel'));
     parent::attachDefaultListeners();
     return $this;
 }
예제 #2
0
파일: Update.php 프로젝트: Andyyang1981/pi
 /**
  * {@inheritDoc}
  */
 protected function attachDefaultListeners()
 {
     $events = $this->events;
     $events->attach('update.pre', array($this, 'updateSchema'));
     parent::attachDefaultListeners();
     return $this;
 }
예제 #3
0
파일: Update.php 프로젝트: pi-module/demo
 protected function attachDefaultListeners()
 {
     $events = $this->events;
     $events->attach('install.post', array($this, 'postUpdate'));
     parent::attachDefaultListeners();
     return $this;
 }