-
-
Save cupertinobr/f0e5f74b0a04b4f0c5e194c5822c8731 to your computer and use it in GitHub Desktop.
TRANSFORMAÇÃO STATUS PEDIDO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$texto = ''; | |
$classe = ''; | |
switch ($value) | |
{ | |
case 'ABERTA': | |
$texto = 'ABERTA'; | |
$classe = 'primary'; | |
break; | |
case 'CANCELADA': | |
$texto = 'CANCELADA'; | |
$classe = 'danger'; | |
break; | |
case 'FINALIZADA': | |
$texto = 'FINALIZADA'; | |
$classe = 'success'; | |
break; | |
} | |
$div = new TElement('span'); | |
$div->class="label label-{$classe}"; | |
$div->style="text-shadow:none; font-size:14px; font-weight:bold"; | |
$div->add($texto); | |
return $div; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment