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


PHP plugin::config方法代码示例

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


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

示例1: dodefault

 function dodefault()
 {
     $plugName = $_GET['name'];
     $config = plugin::config($plugName, 'admincp');
     $operate = $_GET['o'] ? $_GET['o'] : 'default';
     define('__PLUGINACP__', __ADMINCP__ . '=' . $config['url'] . '&o');
     include plugin::mo($plugName);
     $module = new $plugName();
     $method = 'do' . $operate;
     if (method_exists($module, $method)) {
         $module->{$method}();
     } else {
         throwException('应用程序运行出错.类 ' . $moduleClass . ' 中找不到方法定义:' . $method, 1003);
     }
 }
开发者ID:idreamsoft,项目名称:iCMS5.1,代码行数:15,代码来源:plugins.mo.php

示例2: getAuthorEmailReplacement

 /**
  * Get replacement for $AUTHOR_EMAIL$.
  *
  * @return string
  */
 protected function getAuthorEmailReplacement()
 {
     return $this->plugin->config('composer.author.email');
 }
开发者ID:acmadi,项目名称:MinionCMS,代码行数:9,代码来源:PluginGenerator.php

示例3: foreach

=plugins" method="post" target="iCMS_FRAME">
  <table class="adminlist">
    <thead>
      <tr>
        <th>插件名称</th>
        <th>插件描述</th>
        <th>作者</th>
        <th>版本</th>
        <th>调用方法</th>
        <th>状态</th>
        <th>管理</th>
      </tr>
    </thead>
    <?php 
foreach ($rs as $key => $plugName) {
    if ($rs = plugin::config($plugName)) {
        ?>
    <tr>
      <td><a href="<?php 
        echo $rs['config']['Home'];
        ?>
" target="_blank"><?php 
        echo $rs['config']['Name'];
        ?>
</a></td>
      <td><?php 
        echo $rs['config']['Description'];
        ?>
</td>
      <td><a href="<?php 
        echo $rs['config']['Blog'];
开发者ID:idreamsoft,项目名称:iCMS5.0,代码行数:31,代码来源:plugins.manage.php


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