Ejemplo n.º 1
0
 function destroy()
 {
     parent::destroy();
     foreach ($this->onKey as $key => $callback) {
         $this->removeCallback($key);
     }
 }
Ejemplo n.º 2
0
 function destroy()
 {
     $this->destroyComponents();
     parent::destroy();
 }
Ejemplo n.º 3
0
 function destroy()
 {
     $this->clearItems();
     parent::destroy();
 }
Ejemplo n.º 4
0
 function onModalClosed($login, Window $window)
 {
     $windowId = $window->getId();
     unset($this->modalsRecipients[$windowId][$login]);
     if (empty($this->modalsRecipients[$windowId])) {
         $window->destroy();
         unset($this->modalsRecipients[$windowId]);
     }
     $this->modalShown[$login] = null;
 }
Ejemplo n.º 5
0
 function destroy()
 {
     parent::destroy();
     $this->logo->destroy();
     $this->status->destroy();
 }
Ejemplo n.º 6
0
 function destroy()
 {
     $this->window = null;
     $this->windowContent->clearComponents();
     parent::destroy();
 }