Projet

Général

Profil

Paste
Télécharger (318 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / feeds / views / feeds_views_handler_filter_severity.inc @ ed9a13f1

1
<?php
2

    
3
/**
4
 * @file
5
 * Filter by severity.
6
 */
7

    
8
/**
9
 *
10
 */
11
class feeds_views_handler_filter_severity extends views_handler_filter_in_operator {
12

    
13
  /**
14
   * {@inheritdoc}
15
   */
16
  public function get_value_options() {
17
    $this->value_title = t('Severity');
18
    $this->value_options = watchdog_severity_levels();
19
  }
20

    
21
}