/**
  * Constructor.
  */
 function ManageFileApiHandler()
 {
     parent::PKPManageFileApiHandler();
 }
 /**
  * Constructor.
  */
 function ManageFileApiHandler()
 {
     parent::PKPManageFileApiHandler();
     $this->addRoleAssignment(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT, ROLE_ID_REVIEWER, ROLE_ID_AUTHOR), array('identifiers', 'updateIdentifiers', 'clearPubId'));
 }
 /**
  * Get the list of notifications to be updated on metadata form submission.
  * @return array
  */
 protected function getUpdateNotifications()
 {
     $updateNotifications = parent::getUpdateNotifications();
     $updateNotifications[] = NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS;
     return $updateNotifications;
 }
Exemple #4
0
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     $this->addRoleAssignment(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT, ROLE_ID_REVIEWER, ROLE_ID_AUTHOR), array('identifiers', 'updateIdentifiers', 'clearPubId'));
 }