Exemplo n.º 1
0
Arquivo: Handler.php Projeto: cwcw/cms
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setStateManager(new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_LISTENING)));
     $this->_initDefaultOptions();
 }
Exemplo n.º 2
0
Arquivo: Timeout.php Projeto: cwcw/cms
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setStateManager(new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_ARMED)));
     $this->_generateName();
 }
Exemplo n.º 3
0
Arquivo: Menu.php Projeto: cwcw/cms
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_initDefaultOptions();
 }
Exemplo n.º 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();
 }
Exemplo n.º 5
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_stateManager = new Streamwide_Engine_Widget_State_Manager(array(self::STATE_READY, self::STATE_DETECTING));
 }
Exemplo n.º 6
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->_registry->set(SW_ENGINE_CONTROLLER, $this, false);
     $this->_initDefaultOptions();
 }