/home/smartonegroup/www/system/system/controllers/appearance.php
<?php

/*
|--------------------------------------------------------------------------
| Controller
|--------------------------------------------------------------------------
|
*/

_auth();
$ui->assign('_title', $_L['Appearance'] . '- ' . $config['CompanyName']);
$ui->assign('selected_navigation', 'appearance');
$action = $routes[1];
$user = User::_info();

// $app->emit('userAuthenticated', [$user]);


$ui->assign('user', $user);

switch ($action) {
    case 'themes':
        $themes = glob('ui/theme/*');
        $themes = array_map('basename', array_filter($themes, 'is_dir'));
        $themes = array_diff($themes, ['frontend']);

        $frontend_themes = glob('ui/theme/frontend/*');
        $frontend_themes = array_map(
            'basename',
            array_filter($frontend_themes, 'is_dir')
        );

        \view('appearance_themes', [
            'themes' => $themes,
            'frontend_themes' => $frontend_themes,
        ]);

        break;

    case 'ui':
        view('appearance_user_interface');

        break;

    case 'customize':
        view('appearance_customize');

        break;

    case 'editor':

        $ui->assign('_include', 'box');

        view('appearance_editor');

        break;

    case 'themes_post':
        if (APP_STAGE == 'Demo') {
            r2(
                U . 'appearance/themes/',
                'e',
                'Sorry! This option is disabled in the demo mode.'
            );
        }

        $theme = _post('theme');

        $nstyle = _post('nstyle');

        $logo_inverse_for = [
            'light_blue',
            'purple',
            'indigo_blue',
            'dark_mode',
        ];

        if (in_array($nstyle, $logo_inverse_for)) {
            update_option('top_bar_is_dark', 1);
        } else {
            update_option('top_bar_is_dark', 0);
        }

        $d = AppConfig::where('setting', 'theme')
            ->first();
        $d->value = $theme;
        $d->save();

        $d = AppConfig::where('setting', 'nstyle')
            ->first();
        $d->value = $nstyle;
        $d->save();

        switch ($nstyle) {
            case 'light_blue':
                update_option('graph_primary_color', '2196f3');
                update_option('graph_secondary_color', 'eb3c00');

                break;

            case 'purple':
                update_option('graph_primary_color', '7CB5EC');
                update_option('graph_secondary_color', '434348');

                break;

            case 'indigo_blue':
                update_option('graph_primary_color', '002868');
                update_option('graph_secondary_color', 'dc171d');

                break;

            case 'blue_extra':
                update_option('graph_primary_color', '008fe5');
                update_option('graph_secondary_color', 'ff9a00');

                break;

            default:
                update_option('graph_primary_color', '2196f3');
                update_option('graph_secondary_color', 'eb3c00');
        }

        updateOption('frontend_theme', _post('frontend_theme'), true);

        updateOption('frontend_primary_color', _post('frontend_primary_color'), true);
        updateOption('frontend_link_color', _post('frontend_link_color'), true);
        updateOption('frontend_primary_button_color', _post('frontend_primary_button_color'), true);
        updateOption('frontend_primary_button_hover_color', _post('frontend_primary_button_hover_color'), true);


        r2(U . 'appearance/themes/', 's', $_L['Settings Saved Successfully']);

        break;

    case 'enable-admin-dark-theme':

        if (APP_STAGE == 'Demo') {
            r2(
                U . 'dashboard',
                'e',
                'Sorry! This option is disabled in the demo mode.'
            );
        }

        update_option('admin_dark_theme', 'dark');
        update_option('nstyle', 'dark');
        update_option('graph_primary_color', '2196f3');
        update_option('graph_secondary_color', 'eb3c00');
        update_option('top_bar_is_dark', 1);
        r2(U . 'appearance/ui', 's', $_L['Settings Saved Successfully']);
        break;

    case 'disable-admin-dark-theme':
        remove_option('admin_dark_theme');
        update_option('nstyle', 'dark');
        update_option('graph_primary_color', '2196f3');
        update_option('graph_secondary_color', 'eb3c00');
        update_option('top_bar_is_dark', 1);
        r2(U . 'appearance/ui', 's', $_L['Settings Saved Successfully']);
        break;

    default:
        echo 'action not defined';
}