상속: extends Handler
 /**
  * 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
 /**
  * Setup common template variables.
  * @param $request Request
  */
 function setupTemplate($request)
 {
     AppLocale::requireComponents(LOCALE_COMPONENT_APP_AUTHOR);
     return parent::setupTemplate($request);
 }
예제 #3
0
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
     $this->addRoleAssignment(array(ROLE_ID_AUTHOR, ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), array('index', 'wizard', 'step', 'saveStep', 'fetchChoices'));
 }