Example #1
0
File: Wrapper.php Project: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     parent::destroy();
     if (isset($this->_widget)) {
         $this->_widget->destroy();
         unset($this->_widget);
     }
 }
Example #2
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_callLeg)) {
         unset($this->_callLeg);
     }
     parent::destroy();
 }
Example #3
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_timeoutTimer)) {
         $this->_timeoutTimer->destroy();
         unset($this->_timeoutTimer);
     }
     parent::destroy();
 }
Example #4
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_leftCallLeg)) {
         unset($this->_leftCallLeg);
     }
     if (isset($this->_rightCallLeg)) {
         unset($this->_rightCallLeg);
     }
     parent::destroy();
 }
Example #5
0
File: Menu.php Project: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_counter)) {
         $this->_counter->destroy();
         unset($this->_counter);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_dtmfHandler)) {
         $this->_dtmfHandler->destroy();
         unset($this->_dtmfHandler);
     }
     if (isset($this->_mediaPlayer)) {
         $this->_mediaPlayer->destroy();
         unset($this->_mediaPlayer);
     }
     parent::destroy();
 }
Example #6
0
File: Sender.php Project: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_msCallLeg)) {
         unset($this->_msCallLeg);
     }
     if (isset($this->_sipCallLeg)) {
         unset($this->_sipCallLeg);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_mediaPlayer)) {
         $this->_mediaPlayer->destroy();
         unset($this->_mediaPlayer);
     }
     if (isset($this->_relayer)) {
         $this->_relayer->destroy();
         unset($this->_relayer);
     }
     if (isset($this->_forcedFaxNegotiator)) {
         $this->_forcedFaxNegotiator->destroy();
         unset($this->_forcedFaxNegotiator);
     }
     parent::destroy();
 }
Example #7
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     if (isset($this->_mediaServerCallLeg)) {
         unset($this->_mediaServerCallLeg);
     }
     if (isset($this->_storage)) {
         unset($this->_storage);
     }
     parent::destroy();
 }
Example #8
0
File: Handler.php Project: 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();
 }
Example #9
0
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_msCallLeg)) {
         unset($this->_msCallLeg);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     parent::destroy();
 }
Example #10
0
 /**
  * Destructor
  *
  * @return void
  */
 public function destroy()
 {
     if (isset($this->_leftCallLeg)) {
         unset($this->_leftCallLeg);
     }
     if (isset($this->_rightCallLeg)) {
         unset($this->_rightCallLeg);
     }
     if (isset($this->_relayer)) {
         $this->_relayer->destroy();
         unset($this->_relayer);
     }
     if (isset($this->_timer)) {
         $this->_timer->destroy();
         unset($this->_timer);
     }
     parent::destroy();
 }
Example #11
0
 public function destroy()
 {
     if (isset($this->_asrCallLeg)) {
         unset($this->_asrCallLeg);
     }
     if (isset($this->_mediaRecorder)) {
         $this->_mediaRecorder->destroy();
         unset($this->_mediaRecorder);
     }
     parent::destroy();
 }
Example #12
0
File: Player.php Project: cwcw/cms
 /**
  * Destructor
  */
 public function destroy()
 {
     if (isset($this->_mediaServerCallLeg)) {
         unset($this->_mediaServerCallLeg);
     }
     $this->_playList = array();
     parent::destroy();
 }