addCheck(new FormValidatorLocale($this, 'title', 'required', 'manager.groups.form.groupTitleRequired')); $this->addCheck(new FormValidatorPost($this)); $this->group =& $group; } /** * Get the list of localized field names for this object * @return array */ function getLocaleFieldNames() { $groupDao =& DAORegistry::getDAO('GroupDAO'); return $groupDao->getLocaleFieldNames(); } /** * Display the form. */ function display() { $templateMgr =& TemplateManager::getManager(); $templateMgr->assign_by_ref('group', $this->group); $templateMgr->assign('helpTopicId', 'journal.managementPages.groups'); $templateMgr->assign('groupContextOptions', array( GROUP_CONTEXT_EDITORIAL_TEAM => 'manager.groups.context.editorialTeam', GROUP_CONTEXT_PEOPLE => 'manager.groups.context.people' )); parent::display(); } /** * Initialize form data from current group group. */ function initData() { if ($this->group != null) { $this->_data = array( 'title' => $this->group->getTitle(null), // Localized 'publishEmail' => $this->group->getPublishEmail(), 'context' => $this->group->getContext() ); } else { $this->_data = array( 'publishEmail' => 1, 'context' => GROUP_CONTEXT_EDITORIAL_TEAM ); } } /** * Assign form data to user-submitted data. */ function readInputData() { $this->readUserVars(array('title', 'context', 'publishEmail')); } /** * Save group group. */ function execute() { $groupDao =& DAORegistry::getDAO('GroupDAO'); $journal =& Request::getJournal(); if (!isset($this->group)) { $this->group = $groupDao->newDataObject(); } $this->group->setAssocType(ASSOC_TYPE_JOURNAL); $this->group->setAssocId($journal->getId()); $this->group->setTitle($this->getData('title'), null); // Localized $this->group->setContext($this->getData('context')); $this->group->setPublishEmail($this->getData('publishEmail')); // Eventually this will be a general Groups feature; for now, // we're just using it to display journal team entries in About. $this->group->setAboutDisplayed(true); // Update or insert group group if ($this->group->getId() != null) { $groupDao->updateObject($this->group); } else { $this->group->setSequence(REALLY_BIG_NUMBER); $groupDao->insertGroup($this->group); // Re-order the groups so the new one is at the end of the list. $groupDao->resequenceGroups($this->group->getAssocType(), $this->group->getAssocId()); } } } ?>