Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
179
core/modules/tracker/tracker.views.inc
Normal file
179
core/modules/tracker/tracker.views.inc
Normal file
|
@ -0,0 +1,179 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Provide views data for tracker.module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_views_data().
|
||||
*/
|
||||
function tracker_views_data() {
|
||||
$data = array();
|
||||
|
||||
$data['tracker_node']['table']['group'] = t('Tracker');
|
||||
$data['tracker_node']['table']['join'] = array(
|
||||
'node_field_data' => array(
|
||||
'type' => 'INNER',
|
||||
'left_field' => 'nid',
|
||||
'field' => 'nid',
|
||||
),
|
||||
);
|
||||
$data['tracker_node']['nid'] = array(
|
||||
'title' => t('Nid'),
|
||||
'help' => t('The node ID of the node.'),
|
||||
'field' => array(
|
||||
'id' => 'node',
|
||||
),
|
||||
'argument' => array(
|
||||
'id' => 'node_nid',
|
||||
'name field' => 'title',
|
||||
'numeric' => TRUE,
|
||||
'validate type' => 'nid',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'numeric',
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
$data['tracker_node']['published'] = array(
|
||||
'title' => t('Published'),
|
||||
'help' => t('Whether or not the node is published.'),
|
||||
'field' => array(
|
||||
'id' => 'boolean',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'boolean',
|
||||
'label' => t('Published'),
|
||||
'type' => 'yes-no',
|
||||
'accept null' => TRUE,
|
||||
'use_equal' => TRUE,
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
$data['tracker_node']['changed'] = array(
|
||||
'title' => t('Updated date'),
|
||||
'help' => t('The date the node was last updated.'),
|
||||
'field' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
);
|
||||
|
||||
$data['tracker_user']['table']['group'] = t('Tracker - User');
|
||||
$data['tracker_user']['table']['join'] = array(
|
||||
'node_field_data' => array(
|
||||
'type' => 'INNER',
|
||||
'left_field' => 'nid',
|
||||
'field' => 'nid',
|
||||
),
|
||||
'user_field_data' => array(
|
||||
'type' => 'INNER',
|
||||
'left_field' => 'uid',
|
||||
'field' => 'uid',
|
||||
),
|
||||
);
|
||||
$data['tracker_user']['nid'] = array(
|
||||
'title' => t('Nid'),
|
||||
'help' => t('The node ID of the node a user created or commented on. You must use an argument or filter on UID or you will get misleading results using this field.'),
|
||||
'field' => array(
|
||||
'id' => 'node',
|
||||
),
|
||||
'argument' => array(
|
||||
'id' => 'node_nid',
|
||||
'name field' => 'title',
|
||||
'numeric' => TRUE,
|
||||
'validate type' => 'nid',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'numeric',
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
$data['tracker_user']['uid'] = array(
|
||||
'title' => t('Uid'),
|
||||
'help' => t('The user ID of a user who touched the node (either created or commented on it).'),
|
||||
'field' => array(
|
||||
'id' => 'user_name',
|
||||
),
|
||||
'argument' => array(
|
||||
'id' => 'user_uid',
|
||||
'name field' => 'name',
|
||||
),
|
||||
'filter' => array(
|
||||
'title' => t('Name'),
|
||||
'id' => 'user_name',
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
$data['tracker_user']['published'] = array(
|
||||
'title' => t('Published'),
|
||||
'help' => t('Whether or not the node is published. You must use an argument or filter on UID or you will get misleading results using this field.'),
|
||||
'field' => array(
|
||||
'id' => 'boolean',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'boolean',
|
||||
'label' => t('Published'),
|
||||
'type' => 'yes-no',
|
||||
'accept null' => TRUE,
|
||||
'use_equal' => TRUE,
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'standard',
|
||||
),
|
||||
);
|
||||
$data['tracker_user']['changed'] = array(
|
||||
'title' => t('Updated date'),
|
||||
'help' => t('The date the node was last updated or commented on. You must use an argument or filter on UID or you will get misleading results using this field.'),
|
||||
'field' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
'sort' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
'filter' => array(
|
||||
'id' => 'date',
|
||||
),
|
||||
);
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_views_data_alter().
|
||||
*/
|
||||
function tracker_views_data_alter(&$data) {
|
||||
// Provide additional uid_touch handlers which are handled by tracker
|
||||
$data['node_field_data']['uid_touch_tracker'] = array(
|
||||
'group' => t('Tracker - User'),
|
||||
'title' => t('User posted or commented'),
|
||||
'help' => t('Display nodes only if a user posted the node or commented on the node.'),
|
||||
'argument' => array(
|
||||
'field' => 'uid',
|
||||
'name table' => 'users_field_data',
|
||||
'name field' => 'name',
|
||||
'id' => 'tracker_user_uid',
|
||||
'no group by' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
'field' => 'uid',
|
||||
'name table' => 'users_field_data',
|
||||
'name field' => 'name',
|
||||
'id' => 'tracker_user_uid'
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue