本文整理匯總了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);
}
}
示例2: getAuthorEmailReplacement
/**
* Get replacement for $AUTHOR_EMAIL$.
*
* @return string
*/
protected function getAuthorEmailReplacement()
{
return $this->plugin->config('composer.author.email');
}
示例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'];