first commit
[step2_drupal.git] / views / modules / views.views.inc
blobf1ac19032a5e468eb86e1edeec08694ced372c0e
1 <?php
2 // $Id: views.views.inc,v 1.6 2009/01/30 00:01:41 merlinofchaos Exp $
3 /**
4  * @file
5  * Provide views data and handlers that aren't tied to any other module.
6  */
8 /**
9  * @defgroup views_views_module miscellaneous handlers
10  *
11  * @{
12  */
14 /**
15  * Implementation of hook_views_data()
16  */
17 function views_views_data() {
18   $data['views']['table']['group'] = t('Global');
19   $data['views']['table']['join'] = array(
20     '#global' => array(),
21   );
23   $data['views']['random'] = array(
24     'title' => t('Random'),
25     'help' => t('Randomize the display order.'),
26     'sort' => array(
27       'handler' => 'views_handler_sort_random',
28     ),
29   );
31   $data['views']['null'] = array(
32     'title' => t('Null'),
33     'help' => t('Allow an argument to be ignored. The query will not be altered by this argument.'),
34     'argument' => array(
35       'handler' => 'views_handler_argument_null',
36     ),
37   );
39   $data['views']['nothing'] = array(
40     'title' => t('Custom text'),
41     'help' => t('Provide custom text or link.'),
42     'field' => array(
43       'handler' => 'views_handler_field_custom',
44     ),
45   );
47   return $data;
50 /**
51  * @}
52  */