| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/modip/modules/views/modules/ |
Upload File : |
<?php
// $Id: views.views.inc,v 1.7 2009/06/02 17:29:26 merlinofchaos Exp $
/**
* @file
* Provide views data and handlers that aren't tied to any other module.
*/
/**
* @defgroup views_views_module miscellaneous handlers
*
* @{
*/
/**
* Implementation of hook_views_data()
*/
function views_views_data() {
$data['views']['table']['group'] = t('Global');
$data['views']['table']['join'] = array(
'#global' => array(),
);
$data['views']['random'] = array(
'title' => t('Random'),
'help' => t('Randomize the display order.'),
'sort' => array(
'handler' => 'views_handler_sort_random',
),
);
$data['views']['null'] = array(
'title' => t('Null'),
'help' => t('Allow an argument to be ignored. The query will not be altered by this argument.'),
'argument' => array(
'handler' => 'views_handler_argument_null',
),
);
$data['views']['nothing'] = array(
'title' => t('Custom text'),
'help' => t('Provide custom text or link.'),
'field' => array(
'handler' => 'views_handler_field_custom',
),
);
$data['views']['counter'] = array(
'title' => t('View result counter'),
'help' => t('Displays the actual position of the view result'),
'field' => array(
'handler' => 'views_handler_field_counter',
),
);
return $data;
}
/**
* @}
*/