Files
citrus-cms/app/Functions/level-color.php
T
2026-04-28 21:14:25 +03:00

13 lines
276 B
PHP

<?php
if (!function_exists('levelColor')) {
function levelColor($level) {
$colors = [
1 => 'success',
2 => 'primary',
3 => 'warning',
4 => 'info'
];
return $colors[$level] ?? 'secondary';
}
}
?>