예제 #1
0
파일: SipReconnect.php 프로젝트: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_movedSignal)) {
         unset($this->_movedSignal);
     }
     parent::destroy();
 }
예제 #2
0
파일: Handler.php 프로젝트: 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();
 }