2 // $Id: views.views.inc,v 1.6 2009/01/30 00:01:41 merlinofchaos Exp $
5 * Provide views data and handlers that aren't tied to any other module.
9 * @defgroup views_views_module miscellaneous handlers
15 * Implementation of hook_views_data()
17 function views_views_data() {
18 $data['views']['table']['group'] = t('Global');
19 $data['views']['table']['join'] = array(
23 $data['views']['random'] = array(
24 'title' => t('Random'),
25 'help' => t('Randomize the display order.'),
27 'handler' => 'views_handler_sort_random',
31 $data['views']['null'] = array(
33 'help' => t('Allow an argument to be ignored. The query will not be altered by this argument.'),
35 'handler' => 'views_handler_argument_null',
39 $data['views']['nothing'] = array(
40 'title' => t('Custom text'),
41 'help' => t('Provide custom text or link.'),
43 'handler' => 'views_handler_field_custom',