|
|
Drupal example source code file (views_handler_filter_locale_version.inc)
The views_handler_filter_locale_version.inc Drupal example source code<?php // $Id: views_handler_filter_locale_version.inc,v 1.1.6.2 2009/11/13 12:36:05 dereine Exp $ /** * Filter by version. */ class views_handler_filter_locale_version extends views_handler_filter_in_operator { function get_value_options() { if (!isset($this->value_options)) { $this->value_title = t('Version'); // Enable filtering by the current installed Drupal version. $versions = array('***CURRENT_VERSION***' => t('Current installed version')); $result = db_query('SELECT DISTINCT(version) FROM {locales_source} ORDER BY version'); foreach ($result as $row) { if (!empty($row->version)) { $versions[$row->version] = $row->version; } } $this->value_options = $versions; } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_filter_locale_version.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.