hosting_platform_handler_field_status.inc in Hosting 7.4
File
platform/includes/views/handlers/hosting_platform_handler_field_status.inc
View source
<?php
class hosting_platform_handler_field_status extends hosting_field_handler_status {
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;
}
}