public function views_handler_field_invite_status::render in Invite 7.4
Render.
@codingStandardsIgnoreEnd
Overrides views_handler_field::render
File
- views/
handlers/ views_handler_field_invite_status.inc, line 21 - Definition of views_handler_field_invite_status.
Class
- views_handler_field_invite_status
- Field handler to output the name of invite status.
Code
public function render($values) {
$value = $this
->get_value($values);
$options = invite_get_status_options();
return $options[$value];
}