当前位置: 首页>>代码示例>>PHP>>正文


PHP DataObjectGridCellProvider::DataObjectGridCellProvider方法代码示例

本文整理汇总了PHP中DataObjectGridCellProvider::DataObjectGridCellProvider方法的典型用法代码示例。如果您正苦于以下问题:PHP DataObjectGridCellProvider::DataObjectGridCellProvider方法的具体用法?PHP DataObjectGridCellProvider::DataObjectGridCellProvider怎么用?PHP DataObjectGridCellProvider::DataObjectGridCellProvider使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DataObjectGridCellProvider的用法示例。


在下文中一共展示了DataObjectGridCellProvider::DataObjectGridCellProvider方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: QueriesGridCellProvider

 /**
  * Constructor
  * @param $submission Submission
  * @param $stageId int
  * @param $canManage boolean True iff the user can manage the query.
  */
 function QueriesGridCellProvider($submission, $stageId, $canManage)
 {
     parent::DataObjectGridCellProvider();
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_canManage = $canManage;
 }
开发者ID:primoz-svetek,项目名称:pkp-lib,代码行数:13,代码来源:QueriesGridCellProvider.inc.php

示例2: SubmissionsListGridCellProvider

 /**
  * Constructor
  */
 function SubmissionsListGridCellProvider($authorizedRoles = null)
 {
     if ($authorizedRoles) {
         $this->_authorizedRoles = $authorizedRoles;
     }
     parent::DataObjectGridCellProvider();
 }
开发者ID:mczirfusz,项目名称:pkp-lib,代码行数:10,代码来源:SubmissionsListGridCellProvider.inc.php

示例3: QueriesGridCellProvider

 /**
  * Constructor
  * @param $submission Submission
  * @param $stageId int
  * @param $queriesAccessHelper QueriesAccessHelper
  */
 function QueriesGridCellProvider($submission, $stageId, $queriesAccessHelper)
 {
     parent::DataObjectGridCellProvider();
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_queriesAccessHelper = $queriesAccessHelper;
 }
开发者ID:jprk,项目名称:pkp-lib,代码行数:13,代码来源:QueriesGridCellProvider.inc.php

示例4:

 /**
  * Constructor
  */
 function PubIdExportSubmissionsListGridCellProvider($plugin, $authorizedRoles = null)
 {
     $this->_plugin = $plugin;
     if ($authorizedRoles) {
         $this->_authorizedRoles = $authorizedRoles;
     }
     parent::DataObjectGridCellProvider();
 }
开发者ID:bkroll,项目名称:ojs,代码行数:11,代码来源:PubIdExportSubmissionsListGridCellProvider.inc.php

示例5: EventLogGridCellProvider

 /**
  * Constructor
  */
 function EventLogGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:mczirfusz,项目名称:pkp-lib,代码行数:7,代码来源:EventLogGridCellProvider.inc.php

示例6: PublicationFormatGridCellProvider

 /**
  * Constructor
  * @param $submissionId int Submission ID
  */
 function PublicationFormatGridCellProvider($submissionId)
 {
     parent::DataObjectGridCellProvider();
     $this->_submissionId = $submissionId;
 }
开发者ID:PublishingWithoutWalls,项目名称:omp,代码行数:9,代码来源:PublicationFormatGridCellProvider.inc.php

示例7: ApprovedProofFilesGridCellProvider

 /**
  * Constructor
  */
 function ApprovedProofFilesGridCellProvider($currency)
 {
     $this->currency = $currency;
     parent::DataObjectGridCellProvider();
 }
开发者ID:PublishingWithoutWalls,项目名称:omp,代码行数:8,代码来源:ApprovedProofFilesGridCellProvider.inc.php

示例8: SubmissionParticipantGridCellProvider

 /**
  * Constructor
  */
 function SubmissionParticipantGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:jerico-dev,项目名称:omp,代码行数:7,代码来源:SubmissionParticipantGridCellProvider.inc.php

示例9: QueryNotesGridCellProvider

 /**
  * Constructor
  * @param $submission Submission
  */
 function QueryNotesGridCellProvider($submission)
 {
     parent::DataObjectGridCellProvider();
     $this->_submission = $submission;
 }
开发者ID:mczirfusz,项目名称:pkp-lib,代码行数:9,代码来源:QueryNotesGridCellProvider.inc.php

示例10: PKPCitationGridCellProvider

 /**
  * Constructor
  */
 function PKPCitationGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:yuricampos,项目名称:ojs,代码行数:7,代码来源:PKPCitationGridCellProvider.inc.php

示例11: PreparedEmailsGridCellProvider

 /**
  * Constructor
  */
 function PreparedEmailsGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:jprk,项目名称:pkp-lib,代码行数:7,代码来源:PreparedEmailsGridCellProvider.inc.php

示例12: AddThisStatisticsGridCellProvider

 /**
  * Constructor
  */
 function AddThisStatisticsGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:josekarvalho,项目名称:omp,代码行数:7,代码来源:AddThisStatisticsGridCellProvider.inc.php

示例13: RepresentativesGridCellProvider

 /**
  * Constructor
  */
 function RepresentativesGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:PublishingWithoutWalls,项目名称:omp,代码行数:7,代码来源:RepresentativesGridCellProvider.inc.php

示例14: SpotlightsGridCellProvider

 /**
  * Constructor
  */
 function SpotlightsGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:PublishingWithoutWalls,项目名称:omp,代码行数:7,代码来源:SpotlightsGridCellProvider.inc.php

示例15: PublicationDateGridCellProvider

 /**
  * Constructor
  */
 function PublicationDateGridCellProvider()
 {
     parent::DataObjectGridCellProvider();
 }
开发者ID:PublishingWithoutWalls,项目名称:omp,代码行数:7,代码来源:PublicationDateGridCellProvider.inc.php


注:本文中的DataObjectGridCellProvider::DataObjectGridCellProvider方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。