Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Created August 14, 2023 02:18
Show Gist options
  • Save fayqLs/23fe645c38d8511164dfbdbaf482de31 to your computer and use it in GitHub Desktop.
Save fayqLs/23fe645c38d8511164dfbdbaf482de31 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