TermViewsData::getViewsData

public TermViewsData::getViewsData()

Returns views data for the entity type.

Return value

array Views data in the format of hook_views_data().

Overrides EntityViewsData::getViewsData

File

core/modules/taxonomy/src/TermViewsData.php, line 15

Class

TermViewsData
Provides the views data for the taxonomy entity type.

Namespace

Drupal\taxonomy

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
public function getViewsData() {
  $data = parent::getViewsData();
 
  $data['taxonomy_term_field_data']['table']['base']['help'] = $this->t('Taxonomy terms are attached to nodes.');
  $data['taxonomy_term_field_data']['table']['base']['access query tag'] = 'term_access';
  $data['taxonomy_term_field_data']['table']['wizard_id'] = 'taxonomy_term';
 
  $data['taxonomy_term_field_data']['table']['join'] = array(
    // This is provided for the many_to_one argument.
    'taxonomy_index' => array(
      'field' => 'tid',
      'left_field' => 'tid',
    ),
  );
 
  $data['taxonomy_term_field_data']['tid']['help'] = $this->t('The tid of a taxonomy term.');
 
  $data['taxonomy_term_field_data']['tid']['argument']['id'] = 'taxonomy';
  $data['taxonomy_term_field_data']['tid']['argument']['name field'] = 'name';
  $data['taxonomy_term_field_data']['tid']['argument']['zero is null'] = TRUE;
 
  $data['taxonomy_term_field_data']['tid']['filter']['id'] = 'taxonomy_index_tid';
  $data['taxonomy_term_field_data']['tid']['filter']['title'] = $this->t('Term');
  $data['taxonomy_term_field_data']['tid']['filter']['help'] = $this->t('Taxonomy term chosen from autocomplete or select widget.');
  $data['taxonomy_term_field_data']['tid']['filter']['hierarchy table'] = 'taxonomy_term_hierarchy';
  $data['taxonomy_term_field_data']['tid']['filter']['numeric'] = TRUE;
 
  $data['taxonomy_term_field_data']['tid_raw'] = array(
    'title' => $this->t('Term ID'),
    'help' => $this->t('The tid of a taxonomy term.'),
    'real field' => 'tid',
    'filter' => array(
      'id' => 'numeric',
      'allow empty' => TRUE,
    ),
  );
 
  $data['taxonomy_term_field_data']['tid_representative'] = array(
    'relationship' => array(
      'title' => $this->t('Representative node'),
      'label' => $this->t('Representative node'),
      'help' => $this->t('Obtains a single representative node for each term, according to a chosen sort criterion.'),
      'id' => 'groupwise_max',
      'relationship field' => 'tid',
      'outer field' => 'taxonomy_term_field_data.tid',
      'argument table' => 'taxonomy_term_field_data',
      'argument field' => 'tid',
      'base' => 'node_field_data',
      'field' => 'nid',
      'relationship' => 'node_field_data:term_node_tid'
    ),
  );
 
  $data['taxonomy_term_field_data']['vid']['help'] = $this->t('Filter the results of "Taxonomy: Term" to a particular vocabulary.');
  unset($data['taxonomy_term_field_data']['vid']['field']);
  unset($data['taxonomy_term_field_data']['vid']['argument']);
  unset($data['taxonomy_term_field_data']['vid']['sort']);
 
  $data['taxonomy_term_field_data']['name']['field']['id'] = 'term_name';
  $data['taxonomy_term_field_data']['name']['argument']['many to one'] = TRUE;
  $data['taxonomy_term_field_data']['name']['argument']['empty field name'] = $this->t('Uncategorized');
 
  $data['taxonomy_term_field_data']['description__value']['field']['click sortable'] = FALSE;
 
  $data['taxonomy_term_field_data']['changed']['title'] = $this->t('Updated date');
  $data['taxonomy_term_field_data']['changed']['help'] = $this->t('The date the term was last updated.');
 
  $data['taxonomy_term_field_data']['changed_fulldate'] = array(
    'title' => $this->t('Updated date'),
    'help' => $this->t('Date in the form of CCYYMMDD.'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_fulldate',
    ),
  );
 
  $data['taxonomy_term_field_data']['changed_year_month'] = array(
    'title' => $this->t('Updated year + month'),
    'help' => $this->t('Date in the form of YYYYMM.'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_year_month',
    ),
  );
 
  $data['taxonomy_term_field_data']['changed_year'] = array(
    'title' => $this->t('Updated year'),
    'help' => $this->t('Date in the form of YYYY.'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_year',
    ),
  );
 
  $data['taxonomy_term_field_data']['changed_month'] = array(
    'title' => $this->t('Updated month'),
    'help' => $this->t('Date in the form of MM (01 - 12).'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_month',
    ),
  );
 
  $data['taxonomy_term_field_data']['changed_day'] = array(
    'title' => $this->t('Updated day'),
    'help' => $this->t('Date in the form of DD (01 - 31).'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_day',
    ),
  );
 
  $data['taxonomy_term_field_data']['changed_week'] = array(
    'title' => $this->t('Updated week'),
    'help' => $this->t('Date in the form of WW (01 - 53).'),
    'argument' => array(
      'field' => 'changed',
      'id' => 'date_week',
    ),
  );
 
  $data['taxonomy_index']['table']['group'] = $this->t('Taxonomy term');
 
  $data['taxonomy_index']['table']['join'] = array(
    'taxonomy_term_field_data' => array(
      // links directly to taxonomy_term_field_data via tid
      'left_field' => 'tid',
      'field' => 'tid',
    ),
    'node_field_data' => array(
      // links directly to node via nid
      'left_field' => 'nid',
      'field' => 'nid',
    ),
    'taxonomy_term_hierarchy' => array(
      'left_field' => 'tid',
      'field' => 'tid',
    ),
  );
 
  $data['taxonomy_index']['nid'] = array(
    'title' => $this->t('Content with term'),
    'help' => $this->t('Relate all content tagged with a term.'),
    'relationship' => array(
      'id' => 'standard',
      'base' => 'node',
      'base field' => 'nid',
      'label' => $this->t('node'),
      'skip base' => 'node',
    ),
  );
 
  // @todo This stuff needs to move to a node field since really it's all
  //   about nodes.
  $data['taxonomy_index']['tid'] = array(
    'group' => $this->t('Content'),
    'title' => $this->t('Has taxonomy term ID'),
    'help' => $this->t('Display content if it has the selected taxonomy terms.'),
    'argument' => array(
      'id' => 'taxonomy_index_tid',
      'name table' => 'taxonomy_term_field_data',
      'name field' => 'name',
      'empty field name' => $this->t('Uncategorized'),
      'numeric' => TRUE,
      'skip base' => 'taxonomy_term_field_data',
    ),
    'filter' => array(
      'title' => $this->t('Has taxonomy term'),
      'id' => 'taxonomy_index_tid',
      'hierarchy table' => 'taxonomy_term_hierarchy',
      'numeric' => TRUE,
      'skip base' => 'taxonomy_term_field_data',
      'allow empty' => TRUE,
    ),
  );
 
  $data['taxonomy_index']['status'] = [
    'title' => $this->t('Publish status'),
    'help' => $this->t('Whether or not the content related to a term is published.'),
    'filter' => [
      'id' => 'boolean',
      'label' => $this->t('Published status'),
      'type' => 'yes-no',
    ],
  ];
 
  $data['taxonomy_index']['sticky'] = [
    'title' => $this->t('Sticky status'),
    'help' => $this->t('Whether or not the content related to a term is sticky.'),
    'filter' => [
      'id' => 'boolean',
      'label' => $this->t('Sticky status'),
      'type' => 'yes-no',
    ],
    'sort' => [
      'id' => 'standard',
      'help' => $this->t('Whether or not the content related to a term is sticky. To list sticky content first, set this to descending.'),
    ],
  ];
 
  $data['taxonomy_index']['created'] = [
    'title' => $this->t('Post date'),
    'help' => $this->t('The date the content related to a term was posted.'),
    'sort' => [
      'id' => 'date'
    ],
    'filter' => [
      'id' => 'date',
    ],
  ];
 
  $data['taxonomy_term_hierarchy']['table']['group'] = $this->t('Taxonomy term');
  $data['taxonomy_term_hierarchy']['table']['provider'] = 'taxonomy';
 
  $data['taxonomy_term_hierarchy']['table']['join'] = array(
    'taxonomy_term_hierarchy' => array(
      // Link to self through left.parent = right.tid (going down in depth).
      'left_field' => 'tid',
      'field' => 'parent',
    ),
    'taxonomy_term_field_data' => array(
      // Link directly to taxonomy_term_field_data via tid.
      'left_field' => 'tid',
      'field' => 'tid',
    ),
  );
 
  $data['taxonomy_term_hierarchy']['parent'] = array(
    'title' => $this->t('Parent term'),
    'help' => $this->t('The parent term of the term. This can produce duplicate entries if you are using a vocabulary that allows multiple parents.'),
    'relationship' => array(
      'base' => 'taxonomy_term_field_data',
      'field' => 'parent',
      'label' => $this->t('Parent'),
      'id' => 'standard',
    ),
    'filter' => array(
      'help' => $this->t('Filter the results of "Taxonomy: Term" by the parent pid.'),
      'id' => 'numeric',
    ),
    'argument' => array(
      'help' => $this->t('The parent term of the term.'),
      'id' => 'taxonomy',
    ),
  );
 
  return $data;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.