function commerce_file_handler_field_license::render in Commerce File 7
Render the field.
Parameters
array $values: The values retrieved from the database.
Overrides views_handler_field::render
1 method overrides commerce_file_handler_field_license::render()
- commerce_file_handler_field_license_status::render in views/
handlers/ commerce_file_handler_field_license_status.inc - Render the field.
File
- views/
handlers/ commerce_file_handler_field_license.inc, line 85 - Contains the basic license field handler.
Class
- commerce_file_handler_field_license
- Field handler to provide simple renderer that allows linking to an entity.
Code
function render($values) {
$value = $this
->get_value($values);
return $this
->render_link($this
->sanitize_value($value), $values);
}