|
|
Drupal example source code file (poll.views.inc)
The poll.views.inc Drupal example source code<?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; } /** * @} */ Other Drupal examples (source code examples)Here is a short list of links related to this Drupal poll.views.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.