/**
  * Field typu select, který jako <option> načte sadu všech stránek
  * 
  * @author Tomáš Kocifaj
  * @link http://www.ktstudio.cz
  * 
  * @param type $name
  * @param type $label
  */
 public function __construct($name, $label, $parentPage = null, $pageTemplate = null)
 {
     parent::__construct($name, $label);
     $this->setParentPage($parentPage);
     $this->setPageTemplate($pageTemplate);
     $this->pageQueryArgsInit();
 }
 /**
  * Založení objektu typu List WP Users
  *
  * @param string $name - hash v poli
  * @param string $label - popisek v html
  */
 public function __construct($name, $label)
 {
     parent::__construct($name, $label);
 }
 /**
  * Field typu select, který jako <option> načte sadu všech stránek
  * 
  * @author Tomáš Kocifaj
  * @link http://www.ktstudio.cz
  * 
  * @param type $name
  * @param type $label
  */
 public function __construct($name, $label)
 {
     $this->pageQueryArgsInit();
     parent::__construct($name, $label);
 }
 /**
  * Založení objektu typu Select
  *
  * @author Martin Hlaváč
  * @link http://www.ktstudio.cz
  * 
  * @param string $name - hash v poli
  * @param string $label - popisek v html
  */
 public function __construct($name, $label)
 {
     parent::__construct($name, $label);
     $this->addAttrClass(self::PRIMARY_CLASS_IDENTIFICATOR);
 }
 /**
  * Založení objektu typu Select
  *
  * @author Martin Hlaváč
  * @link http://www.ktstudio.cz
  * 
  * @param string $name - hash v poli
  * @param string $label - popisek v html
  */
 public function __construct($name, $label)
 {
     parent::__construct($name, $label);
     $this->addAttrClass(self::CLASS_IDENTIFICATOR);
     $this->setFilterSanitize(FILTER_SANITIZE_STRING);
 }