1 views_handler_field_system_info.inc | protected views_handler_field_system_info::_getPropertyOptions() |
Helper function to return the options array.
File
- core/
modules/ system/ views/ views_handler_field_system_info.inc, line 202 - Definition of views_handler_field_system_info.
Class
- views_handler_field_system_info
- A handler to display module and theme properties stored in the database.
Code
protected function _getPropertyOptions() {
return array(
'name' => t('Name'),
'description' => t('Description'),
'package' => t('Package'),
'configure' => t('Configuration path'),
'tags' => t('Tags'),
'version' => t('Version'),
'backdrop' => t('Backdrop version'),
'dependencies' => t('Dependencies'),
'required' => t('Required'),
'base theme' => t('Base theme'),
'scripts' => t('Scripts'),
'stylesheets' => t('Stylesheets'),
);
}