Beispiel #1
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->overlay = new Overlay();
 }
Beispiel #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);
 }
Beispiel #3
0
 /**
  * Constructs a BoxedFloat with the given value.
  *
  * @param float $value A value.
  */
 public function __construct($value)
 {
     parent::__construct(floatval($value));
 }
 public function __construct($message = null)
 {
     parent::__construct($message);
     $this->setClass('');
 }
Beispiel #5
0
 public function __construct()
 {
     parent::__construct();
     log_message('debug', "UI_helper > Box Class Initialized");
     $this->containerProps['class'] = '';
     $this->containerClasses('nav-tabs-custom');
 }