1 views.module | views_config_info() |
Implements hook_config_info().
File
- core/
modules/ views/ views.module, line 2146 - Primarily Backdrop hooks and global API functions to manipulate views.
Code
function views_config_info() {
$prefixes['views.view'] = array(
'name_key' => 'name',
'label_key' => 'human_name',
'group' => t('Views'),
);
$prefixes['views.settings'] = array(
'label' => t('Views settings'),
'group' => t('Configuration'),
);
return $prefixes;
}