mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
930 B
PHP
33 lines
930 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ThemeController extends Controller
|
|
{
|
|
//
|
|
public function cssVariables()
|
|
{
|
|
$response = 'main{';
|
|
foreach (Setting::where('section', 'Theme')->whereNotNull('data')
|
|
->get(['value', 'data']) as $color) {
|
|
$data = json_decode($color->data);
|
|
if (isset($data->name)) {
|
|
$response .= '--' . $data->name . ':' . $color->value;
|
|
if (isset($data->suffix)) {
|
|
$response .= $data->suffix;
|
|
}
|
|
$response .= ';';
|
|
}
|
|
}
|
|
$response .= '}';
|
|
|
|
if (langIsRTL(app()->getLocale())) {
|
|
$response .= ' .slider-content, .tns-outer .item{ direction: rtl; }';
|
|
}
|
|
return response($response)->header('Content-Type', 'text/css; charset=utf-8');
|
|
}
|
|
}
|