Ejemplo n.º 1
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_movedSignal)) {
         unset($this->_movedSignal);
     }
     parent::destroy();
 }
Ejemplo n.º 2
0
Archivo: Handler.php Proyecto: cwcw/cms
 /**
  * Destroy the widget
  *
  * @return void
  */
 public function destroy()
 {
     if (isset($this->_transferSource)) {
         $this->_transferSource = null;
         unset($this->_transferSource);
     }
     if (isset($this->_transferSourceLink)) {
         $this->_transferSourceLink = null;
         unset($this->_transferSourceLink);
     }
     if (isset($this->_transferDestination)) {
         $this->_transferDestination = null;
         unset($this->_transferDestination);
     }
     if (isset($this->_connector)) {
         $this->_connector->destroy();
         $this->_connector = null;
         unset($this->_connector);
     }
     if (isset($this->_reconnector)) {
         $this->_reconnector->destroy();
         $this->_reconnector = null;
         unset($this->_reconnector);
     }
     parent::destroy();
 }