Created
March 14, 2015 02:16
-
-
Save henrytran9x/08e690b371cc42e46ed5 to your computer and use it in GitHub Desktop.
Using views with a custom table/schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
CREATE TABLE example_table ( | |
nid INT(11) NOT NULL, | |
plain_text_field VARCHAR(32, | |
numeric_field INT(11), | |
boolean_field INT(1), | |
timestamp_field INT(8), | |
PRIMARY KEY(nid) | |
); | |
*/ | |
function mymodule_views_data() { | |
$data['example_table']['table']['group'] = t('Example table'); | |
$data['example_table']['table']['base'] = array( | |
'field' => 'nid', | |
'title' => t('Example table'), | |
'help' => t('Example table contains example content and can be related to nodes.'), | |
'weight' => -10, | |
); | |
$data['example_table']['table']['join'] = array( | |
'node' => array( | |
'left_field' => 'nid', | |
'field' => 'nid', | |
), | |
); | |
$data['example_table']['nid'] = array( | |
'title' => t('Example content'), | |
'help' => t('Some example content that references a node.'), | |
'relationship' => array( | |
'base' => 'node', | |
'field' => 'nid', | |
'handler' => 'views_handler_relationship', | |
'label' => t('Example node'), | |
), | |
); | |
$data['example_table']['plain_text_field'] = array( | |
'title' => t('Plain text field'), | |
'help' => t('Just a plain text field.'), | |
'field' => array( | |
'handler' => 'views_handler_field', | |
'click sortable' => TRUE, | |
), | |
'sort' => array( | |
'handler' => 'views_handler_sort', | |
), | |
'filter' => array( | |
'handler' => 'views_handler_filter_string', | |
), | |
'argument' => array( | |
'handler' => 'views_handler_argument_string', | |
), | |
); | |
$data['example_table']['numeric_field'] = array( | |
'title' => t('Numeric field'), | |
'help' => t('Just a numeric field.'), | |
'field' => array( | |
'handler' => 'views_handler_field_numeric', | |
'click sortable' => TRUE, | |
), | |
'filter' => array( | |
'handler' => 'views_handler_filter_numeric', | |
), | |
'sort' => array( | |
'handler' => 'views_handler_sort', | |
), | |
); | |
$data['example_table']['boolean_field'] = array( | |
'title' => t('Boolean field'), | |
'help' => t('Just an on/off field.'), | |
'field' => array( | |
'handler' => 'views_handler_field_boolean', | |
'click sortable' => TRUE, | |
), | |
'filter' => array( | |
'handler' => 'views_handler_filter_boolean_operator', | |
'label' => t('Published'), | |
'type' => 'yes-no', | |
'use equal' => TRUE, | |
), | |
'sort' => array( | |
'handler' => 'views_handler_sort', | |
), | |
); | |
$data['example_table']['timestamp_field'] = array( | |
'title' => t('Timestamp field'), | |
'help' => t('Just a timestamp field.'), | |
'field' => array( | |
'handler' => 'views_handler_field_date', | |
'click sortable' => TRUE, | |
), | |
'sort' => array( | |
'handler' => 'views_handler_sort_date', | |
), | |
'filter' => array( | |
'handler' => 'views_handler_filter_date', | |
), | |
); | |
return $data; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment