public static function ViewExecutable::getPluginTypes

Returns the valid types of plugins that can be used.

Return value

array An array of plugin type strings.

3 calls to ViewExecutable::getPluginTypes()
PluginTypeListTest::testPluginList in drupal/core/modules/views/lib/Drupal/views/Tests/PluginTypeListTest.php
Tests the plugins list is correct.
ViewsBundle::build in drupal/core/modules/views/lib/Drupal/views/ViewsBundle.php
Overrides Symfony\Component\HttpKernel\Bundle\Bundle::build().
views_get_plugin_definitions in drupal/core/modules/views/views.module
Gets all the views plugin definitions.

File

drupal/core/modules/views/lib/Drupal/views/ViewExecutable.php, line 2018
Definition of Drupal\views\ViewExecutable.

Class

ViewExecutable
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

Namespace

Drupal\views

Code

public static function getPluginTypes() {
  return array(
    'access',
    'area',
    'argument',
    'argument_default',
    'argument_validator',
    'cache',
    'display_extender',
    'display',
    'exposed_form',
    'field',
    'filter',
    'join',
    'pager',
    'query',
    'relationship',
    'row',
    'sort',
    'style',
    'wizard',
  );
}