Код: Выделить всё
function generateTemplateClass($input)
{
$class = [];
$style = [];
if ($input && count($input) > 0) {
foreach ($input as $key => $item) {
switch ($key) {
case 'backgroundColor':
$style[] = "background-color: {$item}";
$class[] = "bg-[{$item}]";
break;
case 'textColor':
$style[] = "color: {$item}";
$class[] = "text-[{$item}]";
break;
}
}
}
$result = [
'class' => $class,
'style' => $style,
];
return $result;
}
Код: Выделить всё
.....
Код: Выделить всё
.....
Подробнее здесь: https://stackoverflow.com/questions/786 ... om-backend
Мобильная версия