コード例 #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();
 }
コード例 #2
0
 /**
  * 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();
 }
コード例 #3
0
 /**
  * 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
ファイル: GridCategoryRow.inc.php プロジェクト: jprk/pkp-lib
 /**
  * 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();
 }
コード例 #8
0
 /**
  * Constructor.
  */
 function CatalogMonographsGridRow()
 {
     parent::GridRow();
 }
コード例 #9
0
 /**
  * Constructor
  */
 function AnnouncementTypeGridRow()
 {
     parent::GridRow();
 }
コード例 #10
0
ファイル: SectionGridRow.inc.php プロジェクト: jalperin/ojs
 /**
  * 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
ファイル: SignoffGridRow.inc.php プロジェクト: doana/pkp-lib
 /**
  * Constructor
  */
 function SignoffGridRow($stageId)
 {
     $this->_stageId = (int) $stageId;
     parent::GridRow();
 }
コード例 #14
0
 /**
  * Constructor
  */
 function ReviewFormElementGridRow()
 {
     parent::GridRow();
 }
コード例 #15
0
 /**
  * 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
ファイル: EventLogGridRow.inc.php プロジェクト: doana/pkp-lib
 /**
  * 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
ファイル: GenreGridRow.inc.php プロジェクト: ramonsodoma/omp
 /**
  * Constructor
  */
 function GenreGridRow()
 {
     parent::GridRow();
 }
コード例 #21
0
ファイル: TocGridRow.inc.php プロジェクト: jalperin/ojs
 /**
  * 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;
 }
コード例 #23
0
 /**
  * Constructor
  */
 function ExportableSubmissionsGridRow()
 {
     parent::GridRow();
 }
コード例 #24
0
 /**
  * Constructor
  */
 function PKPCitationGridRow()
 {
     parent::GridRow();
 }
コード例 #25
0
 /**
  * Constructor
  * @param $hasDeleteItemLink boolean
  */
 function ListbuilderGridRow($hasDeleteItemLink = true)
 {
     parent::GridRow();
     $this->setHasDeleteItemLink($hasDeleteItemLink);
 }
コード例 #26
0
 /**
  * Constructor
  */
 function ReviewFormGridRow()
 {
     parent::GridRow();
 }
コード例 #27
0
ファイル: IssueGridRow.inc.php プロジェクト: mosvits/ojs
 /**
  * Constructor
  */
 function IssueGridRow()
 {
     parent::GridRow();
 }
コード例 #28
0
ファイル: SeriesGridRow.inc.php プロジェクト: jerico-dev/omp
 /**
  * Constructor
  */
 function SeriesGridRow()
 {
     parent::GridRow();
 }
コード例 #29
0
 /**
  * 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)));
 }