プラグインクラスで引数を指定して関数public static function createに遭遇することがあります。
たとえば、ここhttps://www.sitepoint.com/tutorial-on-using-drupal-8-plugin-derivatives-effectively/ で確認できます。
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static(
$container->get('entity.manager')->getStorage('node')
);
}
明確にしていただけますか、機能は何ですか?それは何をすべきか、それはどこで使用されますか?