Joomla プラグインから非プラグイン ディレクトリにファイルをインストールすることは可能ですか?
たとえば、デフォルトでは、Joomla プラグインのインストール xml は次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="plugin" group="mycomponent" method="upgrade">
<name>MyPlugin</name>
<author>Me Myself</author>
<creationDate>January 29, 2011</creationDate>
<copyright>Copyright (C) 2011 ME</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<authorEmail>me@mysite.com</authorEmail>
<authorUrl>www.mysite.com</authorUrl>
<version>1.5</version>
<description>My cool plugin.</description>
<files>
<filename plugin="myplugin">myplugin.php</filename>
</files>
<params />
</install>
これにより、myplugin.php ファイルが /plugins/mycomponent plugins フォルダーにインストールされます。
ただし、プラグインの見栄えを良くするためにいくつかの画像ファイルをインストールし、それらを /images フォルダーにドロップしたい場合、そのパスを指定する方法はありますか?
ありがとう