function views_handler_field_file_status::render in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 modules/system/views_handler_field_file_status.inc \views_handler_field_file_status::render()
- 7.3 modules/system/views_handler_field_file_status.inc \views_handler_field_file_status::render()
Render the field.
Parameters
$values: The values retrieved from the database.
Overrides views_handler_field::render
File
- modules/
system/ views_handler_field_file_status.inc, line 8
Class
- views_handler_field_file_status
- Field handler to translate a node type into its readable form.
Code
function render($values) {
$value = $this
->get_value($values);
return _views_file_status($value);
}