Ejemplo n.º 1
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->overlay = new Overlay();
 }
Ejemplo n.º 2
0
 /**
  * Constructs a BoxedBoolean with the given boolean value.
  *
  * @param boolean $value A boolean value.
  */
 public function __construct($value)
 {
     parent::__construct($value ? true : false);
 }
Ejemplo n.º 3
0
 /**
  * Constructs a BoxedFloat with the given value.
  *
  * @param float $value A value.
  */
 public function __construct($value)
 {
     parent::__construct(floatval($value));
 }
Ejemplo n.º 4
0
 public function __construct($message = null)
 {
     parent::__construct($message);
     $this->setClass('');
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     log_message('debug', "UI_helper > Box Class Initialized");
     $this->containerProps['class'] = '';
     $this->containerClasses('nav-tabs-custom');
 }