Subversion Repositories oidplus

Rev

Rev 1116 | Rev 1131 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1125
Line 255... Line 255...
255
                return OIDplus::config()->getValue('oobe_colors_done') == '0';
255
                return OIDplus::config()->getValue('oobe_colors_done') == '0';
256
        }
256
        }
257
 
257
 
258
        /**
258
        /**
259
         * Implements interface 1.3.6.1.4.1.37476.2.5.2.3.1
259
         * Implements interface 1.3.6.1.4.1.37476.2.5.2.3.1
260
         * @param $step
260
         * @param int $step
261
         * @param $do_edits
261
         * @param bool $do_edits
262
         * @param $errors_happened
262
         * @param bool $errors_happened
263
         * @return void
263
         * @return void
264
         * @throws OIDplusException
264
         * @throws OIDplusException
265
         */
265
         */
266
        public function oobeEntry($step, $do_edits, &$errors_happened)/*: void*/ {
266
        public function oobeEntry(int $step, bool $do_edits, bool &$errors_happened)/*: void*/ {
267
                echo '<h2>'._L('Step %1: Color Theme',$step).'</h2>';
267
                echo '<h2>'._L('Step %1: Color Theme',$step).'</h2>';
268
 
268
 
269
                echo '<input type="checkbox" name="color_invert" id="color_invert"';
269
                echo '<input type="checkbox" name="color_invert" id="color_invert"';
270
                if (isset($_POST['sent'])) {
270
                if (isset($_POST['sent'])) {
271
                        if ($set_value = isset($_POST['color_invert'])) {
271
                        if ($set_value = isset($_POST['color_invert'])) {