Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / modules / system / views_handler_field_file_status.inc @ 7547bb19

1
<?php
2

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

    
8
/**
9
 * Field handler to translate a node type into its readable form.
10
 *
11
 * @ingroup views_field_handlers
12
 */
13
class views_handler_field_file_status extends views_handler_field {
14
  function render($values) {
15
    $value = $this->get_value($values);
16
    return _views_file_status($value);
17
  }
18
}