如何在 Joomla 中为插件添加参数?

How to add parameters to plugins in Joomla?

我在Joomla中使用了一些插件,这些插件有参数。 如果不是 Joomla,在 index.html 中,我将这些参数设置为:

<script>
      tinymce.init({
            selector: '#tinymce',
            plugins: 'pluginName',
            pluginName: {
                parameterName: "value"
            }
      });
</script>

但不幸的是,Joomla 中没有 tinyMCE.init。 我试图在 /plugins/editors/tinymce/tinymce.php 中找到此插件设置的位置,但找不到。

有没有办法在任何 Joomla 文件中添加插件 settings/parameters?

发现可以在 $scriptOptions 变量中设置参数。 /plugins/editors/tinymce/tinymce.php~第625行。 如果插件的参数结构如下:

pluginName: {
    parameterName: "value"
}

必须这样写:'pluginName' => array(parameterName => 'value'),

插件本身可以通过 Joomla 管理面板添加:Extensions -> Plugins -> Editor - TinyMCE -> Custom Plugin