Exemple #1
0
 /**
  * Resets the timer to the initial state
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     if ($this->isArmed()) {
         $this->disarm();
     }
 }
Exemple #2
0
 /**
  * Resets the handler
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     if ($this->isListening()) {
         $this->stopListening();
     }
     $this->_receivedDtmfs = array();
     $this->_handledDtmfs = array();
 }
Exemple #3
0
 /**
  * Resets the widget's properties to the initial state
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_counter->reset();
     $this->_timer->reset();
     $this->_dtmfHandler->reset();
     $this->_mediaPlayer->reset();
     $this->_menuInitialized = false;
 }
Exemple #4
0
 /**
  * @see Engine/Streamwide_Engine_Widget#reset()
  */
 public function reset()
 {
     parent::reset();
     $this->_stateManager->setState(self::STATE_READY);
 }
Exemple #5
0
 /**
  * Reset the widget to the initial state
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_relayer->reset();
     $this->_timer->reset();
     $this->_mediaPlayer->reset();
     $this->_forcedFaxNegotiator->reset();
     $this->_waitUpdateConfirmation = false;
     $this->_stateManager->setState(self::STATE_READY);
 }
Exemple #6
0
 /**
  * Reset the widget
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_currentCount = null;
     if ($this->isRunning()) {
         $this->stop();
     }
 }
Exemple #7
0
 /**
  * Reset the widget
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_connector->reset();
     $this->_reconnector->reset();
 }
Exemple #8
0
 /**
  * Reset the recorder
  *
  * @see Engine/Streamwide_Engine_Widget#reset()
  */
 public function reset()
 {
     parent::reset();
     if ($this->isRecording()) {
         $this->stop();
     }
     if (isset($this->_timer)) {
         $this->_timer->reset();
     }
     $this->_storage = null;
     $this->_recordingStartTime = 0;
     $this->_recordingStopTime = 0;
 }
Exemple #9
0
 /**
  * Reset the widget
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_counter->reset();
     $this->_timer->reset();
     $this->_dtmfHandler->reset();
     $this->_mediaPlayer->reset();
     $this->_number = '';
     $this->_history = array();
 }
Exemple #10
0
 /**
  * Reset the widget
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     if ($this->isDetecting()) {
         $this->stopDetection();
     }
 }
Exemple #11
0
 public function reset()
 {
     parent::reset();
     $this->stopAsrSession();
 }
Exemple #12
0
 /**
  * @see Engine/Streamwide_Engine_Widget#reset()
  */
 public function reset()
 {
     parent::reset();
     $this->_eventsList = array();
 }
Exemple #13
0
 /**
  * @see Engine/Streamwide_Engine_Widget#reset()
  */
 public function reset()
 {
     return $this->_widget->reset();
 }
Exemple #14
0
 /**
  * Reset the player
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     if ($this->isPlaying() || $this->isPaused()) {
         $this->stop();
     }
     if (!$this->isReady()) {
         $this->_stateManager->setState(self::STATE_READY);
     }
     $this->_playList = array();
     $this->_eofReceived = false;
 }
Exemple #15
0
 /**
  * Reset the widget to the initial state
  *
  * @return void
  */
 public function reset()
 {
     parent::reset();
     $this->_relayer->reset();
     $this->_forcedFaxNegotiator->reset();
     if (isset($this->_faxToneDetector)) {
         $this->_faxToneDetector->reset();
     }
     if (isset($this->_timer)) {
         $this->_timer->reset();
     }
     $this->_waitUpdateConfirmation = false;
     $this->_faxToneDetected = false;
     $this->_audioReinviteTimedOut = false;
     $this->_faxPages = array();
     $this->_stateManager->setState(self::STATE_READY);
 }