web-dev-qa-db-ja.com

フィルター付きプラグインリストへのリンク

単純なJoomlaプラグインを構築しています。インストールしたら、プラグインを簡単に見つけて有効にできるように、説明にプラグインマネージャーへのリンクを含めます。現在、私はこのようなものを持っています:

<a href="index.php?option=com_plugins">Enable the plugin</a>

使用可能なすべてのプラグインのリストを作成する代わりに、URLにパラメーターを追加して、結果をフィルター処理(および自分のプラグインのみを表示)できますか?

<a href="index.php?option=com_plugins&search=myplugin">Enable the plugin</a>

(これは機能しませんが、おそらく同じようなものですか?)

3
johanpw

私はv3.3でこれを試したところ、うまくいきました:

index.php?option=com_plugins&view=plugins&filter_search=myplugin

3
GDP