hosting_package_handler_field_status.inc in Hosting 7.4
File
package/includes/views/handlers/hosting_package_handler_field_status.inc
View source
<?php
class hosting_package_handler_field_status extends hosting_site_handler_field_status {
function construct() {
views_handler_field::construct();
}
function render($values) {
$value = $values->{$this->field_alias};
$output = $value ? t('Enabled') : t('Disabled');
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 $value ? 'hosting-success' : 'hosting-info';
}
return $output;
}
}