commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / views / modules / locale / views_handler_filter_locale_group.inc
1 <?php
2
3 /**
4 * @file
5 * Definition of views_handler_filter_locale_group.
6 */
7
8 /**
9 * Filter by locale group.
10 *
11 * @ingroup views_filter_handlers
12 */
13 class views_handler_filter_locale_group extends views_handler_filter_in_operator {
14 function get_value_options() {
15 if (!isset($this->value_options)) {
16 $this->value_title = t('Group');
17 $groups = module_invoke_all('locale', 'groups');
18 // Sort the list.
19 asort($groups);
20 $this->value_options = $groups;
21 }
22 }
23 }