Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / modules / system / views_handler_filter_file_status.inc @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
5
 * Definition of views_handler_filter_file_status.
6
 */
7

    
8
/**
9
 * Filter by file status.
10
 *
11
 * @ingroup views_filter_handlers
12
 */
13
class views_handler_filter_file_status extends views_handler_filter_in_operator {
14

    
15
  /**
16
   * {@inheritdoc}
17
   */
18
  public function get_value_options() {
19
    if (!isset($this->value_options)) {
20
      $this->value_options = _views_file_status();
21
    }
22
  }
23

    
24
}