我試圖用Joomla 3.0中的插件創建新組件安裝Joomla 3.0時插件安裝時組件安裝
我成功安裝了組件。我的要求是安裝插件與組件,但在安裝中的一些問題。
爲此,我創建插件xml。
和主manifest.xml文件我寫這段代碼。
<plugins>
<plugin plugin="switcher" group="system">
<files folder="plg_system_switcher">
<file>switcher.php</file>
<file>switcher.xml</file>
</files>
</plugin>
</plugins>
和我創建腳本文件afterinstall後,我寫這段代碼。
jimport('joomla.utilities.xmlelement');
jimport('joomla.utilities.simplexml');
$plugins = $this->manifest->plugins;
我想要$ this-> manifest的插件信息,但不會顯示像插件一樣的任何對象。
請幫忙,
在此先感謝。
Mayur。
在Joomla 3.0中,Jxmlelement已棄用。要使用它,你需要使用'jimport('legacy.utilities.xmlelement');'否則使用PHP SimpleXML Element類 –