You are here

function hosting_platform_handler_field_status::render in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 platform/includes/views/handlers/hosting_platform_handler_field_status.inc \hosting_platform_handler_field_status::render()

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

platform/includes/views/handlers/hosting_platform_handler_field_status.inc, line 9

Class

hosting_platform_handler_field_status
A handler for the Platform status field.

Code

function render($values) {
  $value = $values->{$this->field_alias};
  $output = _hosting_platform_status($value);
  switch ($this->options['status_mode']) {
    case 'image':
      return "<span class='hosting-status hosting-status-icon'></span>";
    case 'text_image':
      return "<span class='hosting-status'>{$output}</span>";
    case 'class':
      return _hosting_platform_list_class($value);
  }
  return $output;
}