views_handler_field_file_status.inc in Views (for Drupal 7) 6.3
Same filename and directory in other branches
File
modules/system/views_handler_field_file_status.incView source
<?php
/**
* Field handler to translate a node type into its readable form.
*
* @ingroup views_field_handlers
*/
class views_handler_field_file_status extends views_handler_field {
function render($values) {
$value = $this
->get_value($values);
return _views_file_status($value);
}
}
Classes
Name | Description |
---|---|
views_handler_field_file_status | Field handler to translate a node type into its readable form. |