Beispiel #1
0
 /**
  * @see wcf\form\IForm::readFormParameters()
  */
 public function readFormParameters()
 {
     parent::readFormParameters();
     if (isset($_POST['activeTabMenuItem'])) {
         $this->activeTabMenuItem = $_POST['activeTabMenuItem'];
     }
 }
Beispiel #2
0
	/**
	 * @see	wcf\form\IForm::readFormParameters()
	 */
	public function readFormParameters() {
		parent::readFormParameters();
		
		I18nHandler::getInstance()->readValues();
		
		if (I18nHandler::getInstance()->isPlainValue('groupName')) $this->groupName = I18nHandler::getInstance()->getValue('groupName');
	}
 /**
  * @see wcf\form\IForm::readFormParameters()
  */
 public function readFormParameters()
 {
     parent::readFormParameters();
     I18nHandler::getInstance()->readValues();
     if (I18nHandler::getInstance()->isPlainValue('groupName')) {
         $this->groupName = I18nHandler::getInstance()->getValue('groupName');
     }
     if (isset($_POST['activeTabMenuItem'])) {
         $this->activeTabMenuItem = $_POST['activeTabMenuItem'];
     }
     if (isset($_POST['activeMenuItem'])) {
         $this->activeMenuItem = $_POST['activeMenuItem'];
     }
 }
 /**
  * @see	\wcf\form\IForm::readFormParameters()
  */
 public function readFormParameters()
 {
     parent::readFormParameters();
     I18nHandler::getInstance()->readValues();
     if (I18nHandler::getInstance()->isPlainValue('groupName')) {
         $this->groupName = I18nHandler::getInstance()->getValue('groupName');
     }
     if (I18nHandler::getInstance()->isPlainValue('groupDescription')) {
         $this->groupDescription = I18nHandler::getInstance()->getValue('groupDescription');
     }
     if (isset($_POST['priority'])) {
         $this->priority = intval($_POST['priority']);
     }
     if (isset($_POST['userOnlineMarking'])) {
         $this->userOnlineMarking = StringUtil::trim($_POST['userOnlineMarking']);
     }
     if (isset($_POST['showOnTeamPage'])) {
         $this->showOnTeamPage = intval($_POST['showOnTeamPage']);
     }
 }