Subversion Repositories oidplus

Rev

Rev 286 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
142 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
5
 * Copyright 2019 Daniel Marschall, ViaThinkSoft
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
256 daniel-mar 20
class OIDplusPageAdminColors extends OIDplusPagePluginAdmin {
21
 
142 daniel-mar 22
        public function action(&$handled) {
23
                if (isset($_POST["action"]) && ($_POST["action"] == "color_update")) {
24
                        $handled = true;
25
 
26
                        if (!OIDplus::authUtils()::isAdminLoggedIn()) {
250 daniel-mar 27
                                throw new OIDplusException('You need to log in as administrator.');
142 daniel-mar 28
                        }
29
 
30
                        OIDplus::config()->setValue('color_hue_shift', $_POST['hue_shift']);
31
                        OIDplus::config()->setValue('color_sat_shift', $_POST['sat_shift']);
32
                        OIDplus::config()->setValue('color_val_shift', $_POST['val_shift']);
286 daniel-mar 33
                        OIDplus::config()->setValue('color_invert',    $_POST['invcolors']);
142 daniel-mar 34
 
288 daniel-mar 35
                        OIDplus::logger()->log("[OK]A?", "Changed system color theme");
142 daniel-mar 36
 
37
                        echo json_encode(array("status" => 0));
38
                }
39
        }
40
 
41
        public function init($html=true) {
263 daniel-mar 42
                OIDplus::config()->prepareConfigKey('color_hue_shift', 'HSV Hue shift of CSS colors (-360..360)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
142 daniel-mar 43
                        if (!is_numeric($value) || ($value < -360) || ($value > 360)) {
250 daniel-mar 44
                                throw new OIDplusException("Please enter a valid value.");
142 daniel-mar 45
                        }
263 daniel-mar 46
                });
47
                OIDplus::config()->prepareConfigKey('color_sat_shift', 'HSV Saturation shift of CSS colors (-100..100)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
142 daniel-mar 48
                        if (!is_numeric($value) || ($value < -100) || ($value > 100)) {
250 daniel-mar 49
                                throw new OIDplusException("Please enter a valid value.");
142 daniel-mar 50
                        }
263 daniel-mar 51
                });
52
                OIDplus::config()->prepareConfigKey('color_val_shift', 'HSV Value shift of CSS colors (-100..100)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
142 daniel-mar 53
                        if (!is_numeric($value) || ($value < -100) || ($value > 100)) {
250 daniel-mar 54
                                throw new OIDplusException("Please enter a valid value.");
142 daniel-mar 55
                        }
263 daniel-mar 56
                });
286 daniel-mar 57
                OIDplus::config()->prepareConfigKey('color_invert', 'Invert colors? (0=no, 1=yes)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
58
                        if (!is_numeric($value) || ($value < 0) || ($value > 1)) {
59
                                throw new OIDplusException("Please enter a valid value (0 or 1).");
60
                        }
61
                });
142 daniel-mar 62
        }
63
 
64
        public function gui($id, &$out, &$handled) {
65
                if ($id === 'oidplus:colors') {
66
                        $handled = true;
67
                        $out['title'] = 'Colors';
241 daniel-mar 68
                        $out['icon']  = OIDplus::webpath(__DIR__).'icon_big.png';
142 daniel-mar 69
 
70
                        if (!OIDplus::authUtils()::isAdminLoggedIn()) {
71
                                $out['icon'] = 'img/error_big.png';
250 daniel-mar 72
                                $out['text'] = '<p>You need to <a '.OIDplus::gui()->link('oidplus:login').'>log in</a> as administrator.</p>';
281 daniel-mar 73
                                return;
142 daniel-mar 74
                        }
286 daniel-mar 75
 
76
                        $out['text']  = '<br><p>';
281 daniel-mar 77
                        $out['text'] .= '  <label for="amount">Hue shift:</label>';
78
                        $out['text'] .= '  <input type="text" id="hshift" readonly style="border:0; background:transparent; font-weight:bold;">';
79
                        $out['text'] .= '</p>';
80
                        $out['text'] .= '<div id="slider-hshift"></div>';
286 daniel-mar 81
 
82
                        $out['text'] .= '<br><p>';
281 daniel-mar 83
                        $out['text'] .= '  <label for="amount">Saturation shift:</label>';
84
                        $out['text'] .= '  <input type="text" id="sshift" readonly style="border:0; background:transparent; font-weight:bold;">';
85
                        $out['text'] .= '</p>';
86
                        $out['text'] .= '<div id="slider-sshift"></div>';
286 daniel-mar 87
 
88
                        $out['text'] .= '<br><p>';
281 daniel-mar 89
                        $out['text'] .= '  <label for="amount">Value shift:</label>';
90
                        $out['text'] .= '  <input type="text" id="vshift" readonly style="border:0; background:transparent; font-weight:bold;">';
91
                        $out['text'] .= '</p>';
92
                        $out['text'] .= '<div id="slider-vshift"></div>';
286 daniel-mar 93
 
94
                        $out['text'] .= '<br><p>';
95
                        $out['text'] .= '  <label for="amount">Invert colors:</label>';
96
                        $out['text'] .= '  <input type="text" id="icolor" readonly style="border:0; background:transparent; font-weight:bold;">';
97
                        $out['text'] .= '</p>';
98
                        $out['text'] .= '<div id="slider-icolor"></div>';
99
 
281 daniel-mar 100
                        $out['text'] .= '<script>';
101
                        $out['text'] .= 'if (g_hue_shift == null) g_hue_shift = g_hue_shift_saved = '.OIDplus::config()->getValue('color_hue_shift').";\n";
102
                        $out['text'] .= 'if (g_sat_shift == null) g_sat_shift = g_sat_shift_saved = '.OIDplus::config()->getValue('color_sat_shift').";\n";
103
                        $out['text'] .= 'if (g_val_shift == null) g_val_shift = g_val_shift_saved = '.OIDplus::config()->getValue('color_val_shift').";\n";
286 daniel-mar 104
                        $out['text'] .= 'if (g_invcolors == null) g_invcolors = g_invcolors_saved = '.OIDplus::config()->getValue('color_invert').";\n";
281 daniel-mar 105
                        $out['text'] .= 'setup_color_sliders();';
106
                        $out['text'] .= '</script>';
286 daniel-mar 107
 
281 daniel-mar 108
                        $out['text'] .= '<br>';
109
                        $out['text'] .= '<input type="button" onclick="color_reset_sliders_cfg()" value="Reset to last saved config">'.str_repeat('&nbsp;',5);
110
                        $out['text'] .= '<input type="button" onclick="color_reset_sliders_factory()" value="Reset default setting">'.str_repeat('&nbsp;',5);
111
                        $out['text'] .= '<input type="button" onclick="test_color_theme()" value="Test">'.str_repeat('&nbsp;',5);
112
                        $out['text'] .= '<input type="button" onclick="crudActionColorUpdate()" value="Set permanently">';
142 daniel-mar 113
                }
114
        }
115
 
116
        public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
281 daniel-mar 117
                if (!OIDplus::authUtils()::isAdminLoggedIn()) return false;
286 daniel-mar 118
 
142 daniel-mar 119
                if (file_exists(__DIR__.'/treeicon.png')) {
241 daniel-mar 120
                        $tree_icon = OIDplus::webpath(__DIR__).'treeicon.png';
142 daniel-mar 121
                } else {
122
                        $tree_icon = null; // default icon (folder)
123
                }
124
 
125
                $json[] = array(
126
                        'id' => 'oidplus:colors',
127
                        'icon' => $tree_icon,
128
                        'text' => 'Colors'
129
                );
130
 
131
                return true;
132
        }
133
 
134
        public function tree_search($request) {
135
                return false;
136
        }
137
}