-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuserpoints.views.inc
More file actions
363 lines (336 loc) · 11.3 KB
/
Copy pathuserpoints.views.inc
File metadata and controls
363 lines (336 loc) · 11.3 KB
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?php
// $Id: userpoints.views.inc,v 1.1.2.9 2010-06-01 17:42:48 kbahey Exp $
/**
* @file
* This defines views hooks for the Userpoints module. It will be loaded automatically as needed by the Views module.
*/
/**
* Implements hook_views_data().
*/
function userpoints_views_data() {
// ----------------------------------------------------------------
// userpoints table
// Describe the userpoints table.
// Define the base group of this table. Fields that don't
// have a group defined will go into this field by default.
$data['userpoints']['table']['group'] = t('Userpoints');
$data['userpoints']['table']['base'] = array(
'field' => 'uid',
'title' => t('Userpoints'),
'help' => t('!Points accumulated by users on your site.', userpoints_translation()),
);
$data['userpoints']['table']['join'] = array(
'users' => array(
'left_field' => 'uid',
'field' => 'uid',
),
'node' => array(
'left_field' => 'uid',
'field' => 'uid',
),
'term_data' => array(
'left_field' => 'tid',
'field' => 'tid',
),
// This goes to the node so that we have consistent authorship.
'node_revisions' => array(
'left_table' => 'node',
'left_field' => 'uid',
'field' => 'uid',
),
);
// Describe the points column of the userpoints table.
$data['userpoints']['points'] = array(
'title' => t('!Points', userpoints_translation()),
'help' => t("A User's current !points.", userpoints_translation()), // The help that appears on the UI,
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'argument' => array(
'handler' => 'views_handler_argument_numeric',
'numeric' => TRUE,
'name field' => 'points', // display this field in the summary
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Describe the tid column of the userpoints table.
$data['userpoints']['tid'] = array(
'title' => t('Userpoints Category', userpoints_translation()),
'help' => t('The categories (terms) of userpoints used', userpoints_translation()), // The help that appears on the UI,
'field' => array(
'handler' => 'views_handler_field_term_node_tid',
),
'argument' => array(
'handler' => 'views_handler_argument_term_node_tid',
'numeric' => TRUE,
'name field' => 'category', // display this field in the summary
),
'filter' => array(
'handler' => 'views_handler_filter_term_node_tid',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Describe the max_points column of the userpoints table.
$data['userpoints']['max_points'] = array(
'title' => t('Max !points', userpoints_translation()),
'help' => t("A User's max !points.", userpoints_translation()), // The help that appears on the UI,
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'argument' => array(
'handler' => 'views_handler_argument_numeric',
'numeric' => TRUE,
'name field' => 'max_points', // display this field in the summary
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Describe the last_update column of the userpoints table.
$data['userpoints']['last_update'] = array(
'title' => t('Last update'),
'help' => t("The last update timestamp for a User's current !points.", userpoints_translation()),
'field' => array(
'handler' => 'views_handler_field_date',
),
'sort' => array(
'handler' => 'views_handler_sort_date',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
// Add relationship to user table.
$data['userpoints']['uid'] = array(
'title' => t('User'),
'help' => t('Relate the userpoints table to the user table.'),
'relationship' => array(
'base' => 'users',
'field' => 'uid',
'label' => t('Users'),
'handler' => 'views_handler_relationship',
),
);
// ----------------------------------------------------------------
// userpoints_txn table
// Describe the userpoints_txn table.
// Define the base group of this table. Fields that don't
// have a group defined will go into this field by default.
$data['userpoints_txn']['table']['group'] = t('Userpoints Transactions');
$data['userpoints_txn']['table']['base'] = array(
'field' => 'txn_id',
'title' => t('Userpoints Transactions'),
'help' => t('!Points transactions accumulated by users on your site.', userpoints_translation()),
);
$data['userpoints_txn']['table']['join'] = array(
'users' => array(
'left_field' => 'uid',
'field' => 'uid',
),
'term_data' => array(
'left_field' => 'tid',
'field' => 'tid',
),
// This goes to the node so that we have consistent authorship.
'node_revisions' => array(
'left_table' => 'node',
'left_field' => 'uid',
'field' => 'uid',
),
);
// Describe the points column of the userpoints table.
$data['userpoints_txn']['points'] = array(
'title' => t('!Points', userpoints_translation()),
'help' => t("A User's !points for this transaction.", userpoints_translation()), // The help that appears on the UI,
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'argument' => array(
'handler' => 'views_handler_argument_numeric',
'numeric' => TRUE,
'name field' => 'points', // display this field in the summary
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Describe the tid column of the userpoints table.
$data['userpoints_txn']['tid'] = array(
'title' => t('Userpoints Category', userpoints_translation()),
'help' => t('The categories (terms) of userpoints used for this transaction', userpoints_translation()), // The help that appears on the UI,
'field' => array(
'handler' => 'views_handler_field_term_node_tid ',
),
'argument' => array(
'handler' => 'views_handler_argument_term_node_tid',
'numeric' => TRUE,
'name field' => 'category', // display this field in the summary
),
'filter' => array(
'handler' => 'views_handler_filter_term_node_tid',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Add relationship to user table.
$data['userpoints_txn']['uid'] = array(
'title' => t('User'),
'help' => t('Relate the userpoints table to the user table.'),
'argument' => array(
'handler' => 'views_handler_argument_numeric',
'numeric' => TRUE,
),
'relationship' => array(
'base' => 'users',
'field' => 'uid',
'label' => t('Users'),
'handler' => 'views_handler_relationship',
),
);
$data['userpoints_txn']['time_stamp'] = array(
'title' => t('Timestamp'),
'help' => t('The created timestamp for the transaction.'),
'field' => array(
'handler' => 'views_handler_field_date',
),
'sort' => array(
'handler' => 'views_handler_sort_date',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
$data['userpoints_txn']['changed'] = array(
'title' => t('Changed'),
'help' => t('The changed timestamp for the transaction, for when the transaction is updated.'),
'field' => array(
'handler' => 'views_handler_field_date',
),
'sort' => array(
'handler' => 'views_handler_sort_date',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
$data['userpoints_txn']['status'] = array(
'title' => t('Status'),
'help' => t('The status of the transaction.'),
'field' => array(
'handler' => 'views_handler_field_numeric',
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['userpoints_txn']['description'] = array(
'title' => t('Description'),
'help' => t('The description for the transaction.'),
'field' => array(
'handler' => 'views_handler_field',
),
);
$data['userpoints_txn']['reference'] = array(
'title' => t('Reference'),
'help' => t('The reference for the transaction.'),
'field' => array(
'handler' => 'views_handler_field',
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['userpoints_txn']['expirydate'] = array(
'title' => t('Expiry date'),
'help' => t('The expiration date for the transaction.'),
'field' => array(
'handler' => 'views_handler_field_date',
),
'sort' => array(
'handler' => 'views_handler_sort_date',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
$data['userpoints_txn']['expired'] = array(
'title' => t('Expired'),
'help' => t('The expiry status for the transaction.'),
'field' => array(
'handler' => 'views_handler_field_numeric',
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['userpoints_txn']['entity_id'] = array(
'title' => t('Entity ID'),
'help' => t('The entity_id field. Used to relate to the node table.'),
'field' => array(
'handler' => 'views_handler_field',
),
'argument' => array(
'handler' => 'views_handler_argument_numeric',
'numeric' => TRUE,
),
'relationship' => array(
'base' => 'node',
'field' => 'nid',
'label' => t('Entity'),
'handler' => 'views_handler_relationship',
),
);
$data['userpoints_txn']['entity_type'] = array(
'title' => t('Entity type'),
'help' => t('The entity type for the transaction.'),
'field' => array(
'handler' => 'views_handler_field',
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['userpoints_txn']['operation'] = array(
'title' => t('Operation'),
'help' => t('The operation for the transaction.'),
'field' => array(
'handler' => 'views_handler_field',
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
return $data;
}