Skip to content
Snippets Groups Projects
Commit b71681ba authored by Damian Lee's avatar Damian Lee Committed by Tim Plunkett
Browse files

Issue #1758700 by damiankloip, dawehner: Fixed Field, filter, join,...

Issue #1758700 by damiankloip, dawehner: Fixed Field, filter, join, relationship, and sort missing from list of plugin types in _views_fetch_plugin_data().
parent 44f22ac4
No related merge requests found
......@@ -91,7 +91,7 @@ function _views_data_process_entity_types(&$data) {
function _views_fetch_plugin_data($type = NULL, $id = NULL, $reset = FALSE) {
if (!$type && !$id) {
$plugins = array();
$plugin_types = array('access', 'argument', 'argument_default', 'argument_validator', 'cache', 'display_extender', 'display', 'exposed_form', 'localization', 'pager', 'query', 'row', 'style', 'wizard');
$plugin_types = array('access','area', 'argument', 'argument_default', 'argument_validator', 'cache', 'display_extender', 'display', 'exposed_form', 'field', 'filter', 'join', 'localization', 'pager', 'query', 'relationship', 'row', 'sort', 'style', 'wizard');
foreach ($plugin_types as $plugin_type) {
$manager = new ViewsPluginManager($plugin_type);
$plugins[$plugin_type] = $manager->getDefinitions();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment