function views_core_modules in Views (for Drupal 7) 8.3
Returns a list of Drupal core modules.
Return value
array
4 calls to views_core_modules()
- JoinManager::__construct in lib/
Drupal/ views/ Plugin/ Type/ JoinManager.php - Constructs a JoinManager object.
- PluginManager::__construct in lib/
Drupal/ views/ Plugin/ Type/ PluginManager.php - Constructs a PluginManager object.
- views_init in ./
views.module - Implements hook_init().
- WizardManager::__construct in lib/
Drupal/ views/ Plugin/ Type/ WizardManager.php - Constructs a WizardManager object.
File
- ./
views.module, line 34 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_core_modules() {
return array(
'aggregator',
'book',
'block',
'comment',
'contact',
'field',
'filter',
'file',
'language',
'locale',
'node',
'search',
'statistics',
'system',
'taxonomy',
'translation',
'user',
);
}