/**
  * Display the form.
  */
 function display()
 {
     $templateMgr =& TemplateManager::getManager();
     $templateMgr->assign('helpTopicId', 'journal.managementPages.announcements');
     parent::display();
 }
 /**
  * @see Form::fetch()
  * @param $request PKPRequest
  */
 function fetch($request)
 {
     $templateMgr = TemplateManager::getManager($request);
     $templateMgr->assign('typeId', $this->typeId);
     return parent::fetch($request, 'controllers/grid/announcements/form/announcementTypeForm.tpl');
 }
Example #3
0
 /**
  * Display the form.
  */
 function display()
 {
     $templateMgr =& TemplateManager::getManager();
     $templateMgr->assign('helpTopicId', 'conference.generalManagement.announcements');
     parent::display();
 }