-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaggregator.views.inc
324 lines (297 loc) · 7.1 KB
/
aggregator.views.inc
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<?php
/**
* @file
* Provides views data for aggregator.module.
*
* @ingroup views_module_handlers
*/
/**
* Implements hook_views_data().
*/
function aggregator_views_data() {
$data = array();
$data['aggregator_item']['table']['group'] = t('Aggregator');
$data['aggregator_item']['table']['base'] = array(
'field' => 'iid',
'title' => t('Aggregator item'),
'help' => t('Aggregator items are imported from external RSS and Atom news feeds.'),
);
$data['aggregator_item']['table']['entity type'] = 'aggregator_item';
$data['aggregator_item']['iid'] = array(
'title' => t('Item ID'),
'help' => t('The unique ID of the aggregator item.'),
'field' => array(
'id' => 'numeric',
),
'argument' => array(
'id' => 'aggregator_iid',
'name field' => 'title',
'numeric' => TRUE,
),
'filter' => array(
'id' => 'numeric',
),
'sort' => array(
'id' => 'standard',
),
);
$data['aggregator_item']['title'] = array(
'title' => t('Title'),
'help' => t('The title of the aggregator item.'),
'field' => array(
'id' => 'aggregator_title_link',
'extra' => array('link'),
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
$data['aggregator_item']['link'] = array(
'title' => t('Link'),
'help' => t('The link to the original source URL of the item.'),
'field' => array(
'id' => 'url',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
$data['aggregator_item']['author'] = array(
'title' => t('Author'),
'help' => t('The author of the original imported item.'),
'field' => array(
'id' => 'aggregator_xss',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
$data['aggregator_item']['guid'] = array(
'title' => t('GUID'),
'help' => t('The guid of the original imported item.'),
'field' => array(
'id' => 'standard',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
$data['aggregator_item']['description'] = array(
'title' => t('Body'),
'help' => t('The actual content of the imported item.'),
'field' => array(
'id' => 'aggregator_xss',
'click sortable' => FALSE,
),
'argument' => array(
'id' => 'string',
),
'filter' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
);
$data['aggregator_item']['timestamp'] = array(
'title' => t('Timestamp'),
'help' => t('The date the original feed item was posted. (With some feeds, this will be the date it was imported.)'),
'field' => array(
'id' => 'date',
),
'sort' => array(
'id' => 'date',
),
'filter' => array(
'id' => 'date',
),
'argument' => array(
'id' => 'date',
),
);
$data['aggregator_feed']['table']['group'] = t('Aggregator feed');
$data['aggregator_feed']['table']['base'] = array(
'field' => 'fid',
'title' => t('Aggregator feed'),
);
$data['aggregator_feed']['table']['entity type'] = 'aggregator_feed';
$data['aggregator_feed']['table']['join'] = array(
'aggregator_item' => array(
'left_field' => 'fid',
'field' => 'fid',
),
);
$data['aggregator_feed']['fid'] = array(
'title' => t('Feed ID'),
'help' => t('The unique ID of the aggregator feed.'),
'field' => array(
'id' => 'numeric',
),
'argument' => array(
'id' => 'aggregator_fid',
'name field' => 'title',
'numeric' => TRUE,
),
'filter' => array(
'id' => 'numeric',
),
'sort' => array(
'id' => 'standard',
),
);
$data['aggregator_feed']['title'] = array(
'title' => t('Title'),
'help' => t('The title of the aggregator feed.'),
'field' => array(
'id' => 'aggregator_title_link',
'extra' => array('link'),
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
'argument' => array(
'id' => 'string',
),
);
$data['aggregator_feed']['link'] = array(
'title' => t('Link'),
'help' => t('The link to the source URL of the feed.'),
'field' => array(
'id' => 'url',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
$data['aggregator_feed']['checked'] = array(
'title' => t('Last checked'),
'help' => t('The date the feed was last checked for new content.'),
'field' => array(
'id' => 'date',
),
'sort' => array(
'id' => 'date',
),
'filter' => array(
'id' => 'date',
),
'argument' => array(
'id' => 'date',
),
);
$data['aggregator_feed']['description'] = array(
'title' => t('Description'),
'help' => t('The description of the aggregator feed.'),
'field' => array(
'id' => 'xss',
'click sortable' => FALSE,
),
'filter' => array(
'id' => 'string',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
);
$data['aggregator_feed']['modified'] = array(
'title' => t('Last modified'),
'help' => t('The date of the most recent new content on the feed.'),
'field' => array(
'id' => 'date',
),
'sort' => array(
'id' => 'date',
),
'filter' => array(
'id' => 'date',
),
'argument' => array(
'id' => 'date',
),
);
$data['aggregator_category_feed']['table']['join'] = array(
'aggregator_item' => array(
'left_field' => 'fid',
'field' => 'fid',
),
);
$data['aggregator_category']['table']['group'] = t('Aggregator category');
$data['aggregator_category']['table']['join'] = array(
'aggregator_item' => array(
'left_table' => 'aggregator_category_feed',
'left_field' => 'cid',
'field' => 'cid',
),
);
$data['aggregator_category']['cid'] = array(
'title' => t('Category ID'),
'help' => t('The unique ID of the aggregator category.'),
'field' => array(
'id' => 'numeric',
),
'argument' => array(
'id' => 'aggregator_category_cid',
'name field' => 'title',
'numeric' => TRUE,
),
'filter' => array(
'id' => 'aggregator_category_cid',
),
'sort' => array(
'id' => 'standard',
),
);
$data['aggregator_category']['title'] = array(
'title' => t('Category'),
'help' => t('The title of the aggregator category.'),
'field' => array(
'id' => 'aggregator_category',
),
'argument' => array(
'id' => 'string',
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'id' => 'string',
),
);
return $data;
}