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


PHP BlockPlugin::getSeq方法代码示例

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


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

示例1: getSeq

 /**
  * Determine the plugin sequence. Overrides parent so that
  * the plugin will be displayed during install.
  */
 function getSeq()
 {
     if (!Config::getVar('general', 'installed')) {
         return 2;
     }
     return parent::getSeq();
 }
开发者ID:ingmarschuster,项目名称:MindResearchRepository,代码行数:11,代码来源:LanguageToggleBlockPlugin.inc.php

示例2: getSeq

 /**
  * Determine the plugin sequence. Overrides parent so that
  * the plugin will be displayed during install.
  *
  * @param $contextId int Context ID (journal/press)
  */
 function getSeq($contextId = null)
 {
     if (!Config::getVar('general', 'installed')) {
         return 2;
     }
     return parent::getSeq($contextId);
 }
开发者ID:pkp,项目名称:ojs,代码行数:13,代码来源:LanguageToggleBlockPlugin.inc.php

示例3: getSeq

 /**
  * @copydoc PKPPlugin::getSeq()
  */
 function getSeq()
 {
     // Identify the position of the faceting block.
     $seq = parent::getSeq();
     // If nothing has been configured then show the privacy
     // block after all other blocks in the context.
     if (!is_numeric($seq)) {
         $seq = 99;
     }
     return $seq;
 }
开发者ID:PublishingWithoutWalls,项目名称:pkp-lib,代码行数:14,代码来源:UsageStatsOptoutBlockPlugin.inc.php

示例4: getSeq

 /**
  * @see Plugin::getSeq()
  */
 function getSeq()
 {
     // Identify the position of the faceting block.
     $seq = parent::getSeq();
     // If nothing has been configured then use the first
     // position. This is ok as we'll only display facets
     // in a search results context where they have a high
     // relevance by default.
     if (!is_numeric($seq)) {
         $seq = 0;
     }
     return $seq;
 }
开发者ID:laelnasan,项目名称:UTFPR-ojs,代码行数:16,代码来源:LuceneFacetsBlockPlugin.inc.php


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