/** * Resets the timer to the initial state * * @return void */ public function reset() { parent::reset(); if ($this->isArmed()) { $this->disarm(); } }
/** * Resets the handler * * @return void */ public function reset() { parent::reset(); if ($this->isListening()) { $this->stopListening(); } $this->_receivedDtmfs = array(); $this->_handledDtmfs = array(); }
/** * 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; }
/** * @see Engine/Streamwide_Engine_Widget#reset() */ public function reset() { parent::reset(); $this->_stateManager->setState(self::STATE_READY); }
/** * 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); }
/** * Reset the widget * * @return void */ public function reset() { parent::reset(); $this->_currentCount = null; if ($this->isRunning()) { $this->stop(); } }
/** * Reset the widget * * @return void */ public function reset() { parent::reset(); $this->_connector->reset(); $this->_reconnector->reset(); }
/** * 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; }
/** * 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(); }
/** * Reset the widget * * @return void */ public function reset() { parent::reset(); if ($this->isDetecting()) { $this->stopDetection(); } }
public function reset() { parent::reset(); $this->stopAsrSession(); }
/** * @see Engine/Streamwide_Engine_Widget#reset() */ public function reset() { parent::reset(); $this->_eventsList = array(); }
/** * @see Engine/Streamwide_Engine_Widget#reset() */ public function reset() { return $this->_widget->reset(); }
/** * 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; }
/** * 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); }