Skip to content
Snippets Groups Projects
Commit aeb6df2a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2306469 by a_thakur: Remove views_fetch_plugin_names().

parent 55542730
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -662,27 +662,6 @@ function views_hook_info() { ...@@ -662,27 +662,6 @@ function views_hook_info() {
return $hooks; return $hooks;
} }
/**
* Fetch a list of all base tables available
*
* @param $type
* Either 'display', 'style' or 'row'
* @param $key
* For style plugins, this is an optional type to restrict to. May be 'normal',
* 'summary', 'feed' or others based on the neds of the display.
* @param $base
* An array of possible base tables.
*
* @return
* A keyed array of in the form of 'base_table' => 'Description'.
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal\views\Views::fetchPluginNames().
*/
function views_fetch_plugin_names($type, $key = NULL, $base = array()) {
return Views::fetchPluginNames($type, $key, $base);
}
/** /**
* Gets all the views plugin definitions. * Gets all the views plugin definitions.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment