|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/afglcweb/ny/sites/all/modules/views/modules/ |
Upload File : |
<?php
// $Id: poll.views.inc,v 1.4 2008/12/03 19:10:21 merlinofchaos Exp $
/**
* @file
* Provide views data and handlers for poll.module
*/
/**
* @defgroup views_poll_module poll.module handlers
*
* Includes only the core 'poll' table for now.
* @{
*/
/**
* Implementation of hook_views_data()
*/
function poll_views_data() {
// Basic table information.
$data['poll']['table']['group'] = t('Poll');
// Join to 'node' as a base table.
$data['poll']['table']['join'] = array(
'node' => array(
'left_field' => 'nid',
'field' => 'nid',
),
);
// ----------------------------------------------------------------
// Fields
// poll active status
$data['poll']['active'] = array(
'title' => t('Active'),
'help' => t('Whether the poll is open for voting.'),
'field' => array(
'handler' => 'views_handler_field_boolean',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_boolean_operator',
'label' => t('Active'),
'type' => 'yes-no',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
return $data;
}
/**
* @}
*/