예제 #1
0
 /**
  * Constructor
  * @param $submission Submission
  * @param $stageId int
  * @param $queriesAccessHelper QueriesAccessHelper
  */
 function QueriesGridRow($submission, $stageId, $queriesAccessHelper)
 {
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_queriesAccessHelper = $queriesAccessHelper;
     parent::GridRow();
 }
 /**
  * Constructor
  * @param $actionArgs array Action arguments
  * @param $query Query
  * @param $queryNotesGrid The notes grid containing this row
  */
 function QueryNotesGridRow($actionArgs, $query, $queryNotesGrid)
 {
     $this->_actionArgs = $actionArgs;
     $this->_query = $query;
     $this->_queryNotesGrid = $queryNotesGrid;
     parent::GridRow();
 }
 /**
  * Constructor
  */
 function StageParticipantGridRow(&$submission, $stageId, $canAdminister = false)
 {
     $this->_submission =& $submission;
     $this->_stageId =& $stageId;
     $this->_canAdminister = $canAdminister;
     parent::GridRow();
 }
예제 #4
0
 /**
  * Constructor
  * $canDelete boolean
  * $canViewNotes boolean
  * $stageId int (optional)
  */
 function SubmissionFilesGridRow($canDelete, $canViewNotes, $stageId = null)
 {
     $this->_canDelete = $canDelete;
     $this->_canViewNotes = $canViewNotes;
     $this->_stageId = $stageId;
     parent::GridRow();
 }
예제 #5
0
 /**
  * Constructor.
  */
 function GridCategoryRow()
 {
     parent::GridRow();
     // Set a default cell provider that will get the cell template
     // variables from the category grid row.
     $this->setCellProvider(new GridCategoryRowCellProvider());
 }
 /**
  * Constructor
  * @param $submission Submission
  * @param $stageId int
  * @param $canManage boolean True iff the user can manage the query.
  */
 function QueriesGridRow($submission, $stageId, $canManage)
 {
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_canManage = $canManage;
     parent::GridRow();
 }
예제 #7
0
 /**
  * Constructor.
  */
 function GridCategoryRow()
 {
     parent::GridRow();
 }
 /**
  * Constructor.
  */
 function CatalogMonographsGridRow()
 {
     parent::GridRow();
 }
예제 #9
0
 /**
  * Constructor
  */
 function AnnouncementTypeGridRow()
 {
     parent::GridRow();
 }
예제 #10
0
 /**
  * Constructor
  */
 function SectionGridRow()
 {
     parent::GridRow();
 }
예제 #11
0
 /**
  * Constructor
  */
 function PKPFilterGridRow()
 {
     parent::GridRow();
 }
예제 #12
0
 /**
  * Constructor
  * @param $userRoles array
  * @param $contextLevel int CONTEXT_...
  */
 function PKPPluginGridRow($userRoles, $contextLevel)
 {
     $this->_userRoles = $userRoles;
     $this->_contextLevel = $contextLevel;
     parent::GridRow();
 }
예제 #13
0
 /**
  * Constructor
  */
 function SignoffGridRow($stageId)
 {
     $this->_stageId = (int) $stageId;
     parent::GridRow();
 }
예제 #14
0
 /**
  * Constructor
  */
 function ReviewFormElementGridRow()
 {
     parent::GridRow();
 }
 /**
  * Constructor
  */
 function CopyeditingFilesGridRow()
 {
     parent::GridRow();
 }
예제 #16
0
 /**
  * Constructor
  */
 function StaticPageGridRow()
 {
     parent::GridRow();
 }
예제 #17
0
 /**
  * Constructor
  */
 function PKPAuthorGridRow($submission, $readOnly = false)
 {
     $this->_submission = $submission;
     $this->_readOnly = $readOnly;
     parent::GridRow();
 }
예제 #18
0
 /**
  * Constructor
  */
 function EventLogGridRow($submission)
 {
     $this->_submission = $submission;
     parent::GridRow();
 }
예제 #19
0
 /**
  * Constructor
  */
 function ArticleGalleyGridRow($submissionId)
 {
     parent::GridRow();
     $this->setRequestArgs((array) $this->getRequestArgs() + array('submissionId' => $submissionId));
 }
예제 #20
0
 /**
  * Constructor
  */
 function GenreGridRow()
 {
     parent::GridRow();
 }
예제 #21
0
 /**
  * Constructor
  * @param $issueId int
  */
 function TocGridRow($issueId)
 {
     parent::GridRow();
     $this->issueId = $issueId;
 }
예제 #22
0
 /**
  * Constructor
  * @param $tabsSelector string Selector for containing tab element
  */
 function EmailGridRow($tabsSelector, $locale)
 {
     parent::GridRow();
     $this->tabsSelector = $tabsSelector;
     $this->locale = $locale;
 }
 /**
  * Constructor
  */
 function ExportableSubmissionsGridRow()
 {
     parent::GridRow();
 }
예제 #24
0
 /**
  * Constructor
  */
 function PKPCitationGridRow()
 {
     parent::GridRow();
 }
 /**
  * Constructor
  * @param $hasDeleteItemLink boolean
  */
 function ListbuilderGridRow($hasDeleteItemLink = true)
 {
     parent::GridRow();
     $this->setHasDeleteItemLink($hasDeleteItemLink);
 }
예제 #26
0
 /**
  * Constructor
  */
 function ReviewFormGridRow()
 {
     parent::GridRow();
 }
예제 #27
0
 /**
  * Constructor
  */
 function IssueGridRow()
 {
     parent::GridRow();
 }
예제 #28
0
 /**
  * Constructor
  */
 function SeriesGridRow()
 {
     parent::GridRow();
 }
 /**
  * Constructor
  */
 function IdentificationCodeGridRow($monograph)
 {
     $this->_monograph = $monograph;
     parent::GridRow();
 }
예제 #30
0
 /**
  * Constructor
  */
 function IssueGalleyGridRow($issueId)
 {
     parent::GridRow();
     $this->setRequestArgs(array_merge((array) $this->getRequestArgs(), array('issueId' => $issueId)));
 }