|
|
Drupal example source code file (filter.views.inc)
The filter.views.inc Drupal example source code<?php // $Id: filter.views.inc,v 1.1 2009/06/03 19:06:05 merlinofchaos Exp $ /** * @file * Provide basic views data for filter.module. */ /** * @defgroup views_filter_module filter.module handlers * * Only includes the table 'filter_formats'. * @{ */ /** * Implementation of hook_views_data() */ function filter_views_data() { // ---------------------------------------------------------------------- // filter_formats table // Have not defined $data['filter_formats']['table']['group'] since // no fields are defined here yet. $data['filter_formats']['table']['join'] = array( 'node_revisions' => array( 'left_field' => 'format', 'field' => 'format', ), 'node' => array( 'left_table' => 'node_revisions', 'left_field' => 'format', 'field' => 'format', ), ); return $data; } function filter_views_handlers() { return array( 'info' => array( 'path' => drupal_get_path('module', 'views') . '/modules/filter', ), 'handlers' => array( // field handlers 'views_handler_field_filter_format_name' => array( 'parent' => 'views_handler_field', ), ), ); } /** * @} */ Other Drupal examples (source code examples)Here is a short list of links related to this Drupal filter.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.