本文整理汇总了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'];