Issue #2306545 by a_thakur: Remove views_plugin_list().

8.0.x
Alex Pott 2014-07-21 11:06:48 +01:00
parent 6819d5867e
commit 555427300a
1 changed files with 0 additions and 19 deletions

View File

@ -696,25 +696,6 @@ function views_get_plugin_definitions() {
return Views::getPluginDefinitions();
}
/**
* Returns a list of plugins and metadata about them.
*
* @return array
* An array keyed by PLUGIN_TYPE:PLUGIN_NAME, like 'display:page' or
* 'pager:full', containing an array with the following keys:
* - title: The plugin's title.
* - type: The plugin type.
* - module: The module providing the plugin.
* - views: An array of enabled Views that are currently using this plugin,
* keyed by machine name.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\views\Views::pluginList().
*/
function views_plugin_list() {
return Views::pluginList();
}
/**
* Get enabled display extenders.
*