Inheritance: extends Handler
コード例 #1
0
 /**
  * Constructor
  */
 function SubmissionHandler()
 {
     parent::PKPSubmissionHandler();
     $this->addRoleAssignment(array(ROLE_ID_AUTHOR, ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), array('index', 'wizard', 'step', 'saveStep', 'fetchChoices'));
 }
コード例 #2
0
ファイル: SubmissionHandler.inc.php プロジェクト: pkp/ojs
 /**
  * Setup common template variables.
  * @param $request Request
  */
 function setupTemplate($request)
 {
     AppLocale::requireComponents(LOCALE_COMPONENT_APP_AUTHOR);
     return parent::setupTemplate($request);
 }
コード例 #3
0
ファイル: SubmissionHandler.inc.php プロジェクト: NateWr/omp
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
     $this->addRoleAssignment(array(ROLE_ID_AUTHOR, ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), array('index', 'wizard', 'step', 'saveStep', 'fetchChoices'));
 }