Skip to content

Instantly share code, notes, and snippets.

@cupertinobr
Forked from fayqLs/.php
Created September 12, 2023 18:22
Show Gist options
  • Save cupertinobr/f0e5f74b0a04b4f0c5e194c5822c8731 to your computer and use it in GitHub Desktop.
Save cupertinobr/f0e5f74b0a04b4f0c5e194c5822c8731 to your computer and use it in GitHub Desktop.
TRANSFORMAÇÃO STATUS PEDIDO
<?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