You are here

function data_data_views_handlers_alter in Data 8

Same name in this branch
  1. 8 data.api.php \data_data_views_handlers_alter()
  2. 8 data.views.inc \data_data_views_handlers_alter()
Same name and namespace in other branches
  1. 7 data.api.php \data_data_views_handlers_alter()
  2. 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';
}