Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suresh-kumara-gist/48946bff196bc8152783f60d532b0cf0 to your computer and use it in GitHub Desktop.
Save suresh-kumara-gist/48946bff196bc8152783f60d532b0cf0 to your computer and use it in GitHub Desktop.
Drupal 8 get all views display plugins.
use Drupal\views\Views;
$display_plugins = Views::pluginManager('display')->getDefinitions();
$plugin_ids = [];
foreach ($display_plugins as $id => $definition) {
// if ($definition['provider'] == 'views' || $definition['provider'] == 'views_data_export') {
if ($definition['provider'] == 'views') {
$plugin_ids[] = $id;
}
}
// dpm($plugin_ids);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment