fetch() public method

public fetch ( $request )
コード例 #1
0
 /**
  * @copydoc NewNoteForm::fetch()
  */
 function fetch($request)
 {
     $templateMgr = TemplateManager::getManager($request);
     $templateMgr->assign('linkParams', $this->_actionArgs);
     $templateMgr->assign('showEarlierEntries', false);
     $templateMgr->assign('signoffId', $this->signoffId);
     $templateMgr->assign('symbolic', $this->_symbolic);
     $templateMgr->assign('stageId', $this->_stageId);
     $templateMgr->assign('submissionId', $this->_submissionId);
     return parent::fetch($request);
 }
コード例 #2
0
 /**
  * @copydoc NewFileNoteForm::fetch()
  */
 function fetch($request)
 {
     $templateMgr = TemplateManager::getManager($request);
     $templateMgr->assign('showEarlierEntries', true);
     return parent::fetch($request);
 }
コード例 #3
0
 /**
  * Fetch the form.
  * @see Form::fetch()
  */
 function fetch(&$request)
 {
     $templateMgr =& TemplateManager::getManager();
     $templateMgr->assign('monographid', $this->monographId);
     return parent::fetch($request);
 }