FINAL suepr merge step : added all modules to this super repos
This commit is contained in:
@@ -482,13 +482,15 @@ function hook_views_data_alter(&$data) {
|
||||
$data['users']['example_field'] = array(
|
||||
'title' => t('Example field'),
|
||||
'help' => t('Some example content that references a user'),
|
||||
'handler' => 'hook_handlers_field_example_field',
|
||||
'field' => array(
|
||||
'handler' => 'modulename_handler_field_example_field',
|
||||
),
|
||||
);
|
||||
|
||||
// This example changes the handler of the node title field.
|
||||
// In this handler you could do stuff, like preview of the node when clicking
|
||||
// the node title.
|
||||
$data['node']['title']['handler'] = 'modulename_handlers_field_node_title';
|
||||
$data['node']['title']['field']['handler'] = 'modulename_handler_field_node_title';
|
||||
|
||||
// This example adds a relationship to table {foo}, so that 'foo' views can
|
||||
// add this table using a relationship. Because we don't want to write over
|
||||
|
Reference in New Issue
Block a user