我正在使用 Joomla 3.1.5。
在位于 的插件中plugins/content/myplugin/form/form.xml
,我有一个这样的表单:
<form>
<fields name="params">
<fieldset name="category_fieldset" label="Category Fields">
<field name="category_intro" type="textarea"
id="category_intro" label="Category Intro"
description="Intro text" />
</fieldset>
</fields>
</form>
此插件已添加到管理员中的每个类别选项中。
在我的模块 ( tmpl/default.php
) 中,我尝试如下检索此值,但没有得到任何结果。
foreach ($items as $item) {
if (!empty($item)) {
......
......
$plugin = &JPluginHelper::getPlugin('content', 'myplugin');
$pluginParams = new JRegistry($plugin->params);
$param = $pluginParams->get('category_intro');
echo $param;
......
......
}
}