48 lines
		
	
	
		
			931 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			931 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Provide views data and handlers for poll.module.
 | 
						|
 *
 | 
						|
 * @ingroup views_module_handlers
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Implements 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(
 | 
						|
      'id' => 'boolean',
 | 
						|
      'click sortable' => TRUE,
 | 
						|
    ),
 | 
						|
    'filter' => array(
 | 
						|
      'id' => 'boolean',
 | 
						|
      'label' => t('Active'),
 | 
						|
      'type' => 'yes-no',
 | 
						|
    ),
 | 
						|
    'sort' => array(
 | 
						|
      'id' => 'standard',
 | 
						|
    ),
 | 
						|
  );
 | 
						|
 | 
						|
  return $data;
 | 
						|
}
 |