當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。