- Issue created by @dimitriskr
- 🇮🇳India SandeepSingh199
Do we really need to replace
Views::pluginManager($type) and Views::handlerManager($type) with \Drupal::service('plugin.manager.views.' . $type)
, aspluginManager
is a centralised function and inside it we are usingplugin.manager.views.
service.
So in future dates whenever we want to change the service, we have to only changepublic static function pluginManager($type) { return \Drupal::service('plugin.manager.views.' . $type); }
, we have to only change the name of the service.