/** * @see Page::readData() */ public function readData() { parent::readData(); $this->options = $this->getOptionTree(); if (!count($_POST)) { $this->activeTabMenuItem = $this->options[0]['categoryName']; } }
/** * @see Page::readData() */ public function readData() { parent::readData(); WCF::getLanguage()->get(StringUtil::encodeHTML('wcf.acp.group.add.success')); //this line serves as work around for a bug in the language system of the wcf $this->options = $this->getOptionTree(); $this->makeItemSelect(); }
/** * @see Page::readData() */ public function readData() { parent::readData(); foreach ($this->activeOptions as $name => $option) { if (isset($this->values[$name])) { $this->activeOptions[$name]['optionValue'] = $this->values[$name]; } } $this->options = $this->getCategoryOptions(); }
/** * @see Page::readData() */ public function readData() { parent::readData(); $this->options = $this->getOptionTree($this->activeCategory); }