Magento 2:すべてのプラグイン(インターセプター)と設定のリストを取得する


10

Magento 2のインストールで、すべてのプラグインのリスト(プラグインがプラグインされているメソッドを含む)とすべての設定(および元のクラス)取得する方法はありますか?


7
プラグインについては、github.com/magento-hackathon/magento2-plugin-visualizationを試すことができます。広報に満足!:)
AnnaVölkl16年

回答:


9

プラグインの利用可能なすべてのリストを取得するには:

vendor/magento/framework/Interception/PluginList/PluginList.php メソッドを 見つけるmerge

public function merge(array $config)
{
   // default code
    echo "<pre>";
    print_r($this->_data);
    die();  
}

利用可能なすべての設定リストを取得するには:

vendor/magento/framework/ObjectManager/Config/Mapper/Dom.php メソッドを見つける convert

public function convert($config)
{
// default code
   echo "<pre>";
   print_r($output);
   die();
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.