function data_data_views_handlers_alter in Data 8
Same name in this branch
- 8 data.api.php \data_data_views_handlers_alter()
- 8 data.views.inc \data_data_views_handlers_alter()
Same name and namespace in other branches
- 7 data.api.php \data_data_views_handlers_alter()
- 7 data.views.inc \data_data_views_handlers_alter()
Declare additional Views handlers to the views data configuration options.
Handlers that are not used by anything declared in hook_views_data() should use this hook to add themselves to the options on the 'Configure views' page.
File
- ./
data.api.php, line 85 - Documentation of hooks.
Code
function data_data_views_handlers_alter(&$handlers) {
$handlers['field']['views_handler_field_data_markup'] = 'views_handler_field_data_markup';
}