Beispiel #1
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setStateManager(new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_LISTENING)));
     $this->_initDefaultOptions();
 }
Beispiel #2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setStateManager(new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_ARMED)));
     $this->_generateName();
 }
Beispiel #3
0
Datei: Menu.php Projekt: cwcw/cms
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_initDefaultOptions();
 }
Beispiel #4
0
 /**
  * Constructor
  *
  * @return void
  */
 public function __construct(Streamwide_Engine_Media_Server_Call_Leg $mediaServerCallLeg = null)
 {
     parent::__construct();
     if (null !== $mediaServerCallLeg) {
         $this->setMediaServerCallLeg($mediaServerCallLeg);
     }
     $this->_stateManager = new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_RECORDING));
     $this->_initDefaultOptions();
 }
Beispiel #5
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_stateManager = new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_DETECTING));
 }
Beispiel #6
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_registry->set(SW_ENGINE_CONTROLLER, $this, false);
     $this->_initDefaultOptions();
 }