mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-29 11:08:53 +01:00
38 lines
975 B
PHP
38 lines
975 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Composers;
|
|
|
|
use CachetHQ\Cachet\Facades\Setting;
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
class ThemeComposer
|
|
{
|
|
/**
|
|
* Bind data to the view.
|
|
*
|
|
* @param \Illuminate\Contracts\View\View $view
|
|
*/
|
|
public function compose(View $view)
|
|
{
|
|
$view->with('themeBackgroundColor', Setting::get('style_background_color'));
|
|
$view->with('themeTextColor', Setting::get('style_text_color'));
|
|
|
|
$viewData = $view->getData();
|
|
$themeView = array_only($viewData, preg_grep('/^theme/', array_keys($viewData)));
|
|
$hasThemeSettings = array_filter($themeView, function ($data) {
|
|
return $data != null;
|
|
});
|
|
|
|
$view->with('themeSetup', !empty($hasThemeSettings));
|
|
}
|
|
}
|