/**
  * 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();
 }
 /**
  * Odebrání třídy vč. kontroly na povinnou třídu
  * 
  * @author Martin Hlaváč
  * @link http://www.ktstudio.cz
  * 
  * @param string $class
  * @return string
  * @throws KT_Not_Supported_Exception
  */
 public function removeAttrClass($class)
 {
     if ($class == self::CLASS_IDENTIFICATOR) {
         throw new KT_Not_Supported_Exception("Remove Class " . self::CLASS_IDENTIFICATOR);
     }
     return parent::removeAttrClass($class);
 }
 /**
  * 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);
 }