public static function getOrderStatusClass($status)
{
$status = str_replace('COM_PHOCACART_STATUS_', '', $status);
switch ($status) {
case 'CANCELED':
$class = 'label label-warning badge bg-warning ph-order-status-canceled';
break;
case 'COMPLETED':
$class = 'label label-success badge bg-success ph-order-status-completed';
break;
case 'CONFIRMED':
$class = 'label label-success badge bg-success ph-order-status-confirmed';
break;
case 'PENDING':
$class = 'label label-info badge bg-info label-primary ph-order-status-pending';
break;
case 'REFUNDED':
$class = 'label label-important label-danger badge bg-danger ph-order-status-refunded';
break;
case 'SHIPPED':
$class = 'label label-info badge bg-info ph-order-status-shipped';
break;
default:
$class = 'label label-default ph-order-status-default';
break;
}
return $class;
}