Esempio n. 1
0
 /**
  * Constructor.
  */
 public function __construct($items, $label = null)
 {
     parent::__construct();
     $this->items = $items;
     $this->uniqId = uniqid("ca-");
     $this->assign("uniqId", $this->uniqId);
     $this->assign("label", $label);
 }
Esempio n. 2
0
 /**
  * Constructor.
  */
 public function __construct($items, $label = null)
 {
     parent::__construct();
     if (empty($items)) {
         $this->setVisible(false);
     }
     $this->items = $items;
     $this->uniqId = uniqid("ca-");
     $this->assign("uniqId", $this->uniqId);
     $this->assign("label", $label);
 }
Esempio n. 3
0
 /**
  * Constructor.
  */
 public function __construct($items)
 {
     parent::__construct();
     $this->items = $items;
 }