Inheritance: extends Form
 /**
  * Constructor.
  */
 function NewSubmissionNoteForm($submissionId)
 {
     parent::NewNoteForm();
     $this->submissionId = $submissionId;
 }
示例#2
0
 /**
  * @copydoc NewFileNoteForm::fetch()
  */
 function fetch($request)
 {
     $templateMgr = TemplateManager::getManager($request);
     $templateMgr->assign('showEarlierEntries', true);
     return parent::fetch($request);
 }
示例#3
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);
 }
 /**
  * Fetch the form.
  * @see Form::fetch()
  */
 function fetch(&$request)
 {
     $templateMgr =& TemplateManager::getManager();
     $templateMgr->assign('monographid', $this->monographId);
     return parent::fetch($request);
 }
 /**
  * Constructor.
  */
 function __construct($submissionId)
 {
     parent::__construct();
     $this->submissionId = $submissionId;
 }
示例#6
0
 /**
  * Constructor.
  */
 function NewFileNoteForm($fileId)
 {
     parent::NewNoteForm();
     $this->fileId = $fileId;
 }
 /**
  * Constructor.
  */
 function NewMonographNoteForm($monographId)
 {
     parent::NewNoteForm();
     $this->monographId = $monographId;
 }