diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-08-08 23:02:03 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-08-08 23:02:03 +0200 |
commit | ef18c5f848a5e4d1239bdc1d89e0cc9f75a10512 (patch) | |
tree | 23b154c9d71e15c75a201822318eaa66dcefc99e /app/view/templates/admin.php | |
parent | e75e54d23d262940acd4c7df2a8cc7b7ab1751d5 (diff) | |
download | wcms-ef18c5f848a5e4d1239bdc1d89e0cc9f75a10512.tar.gz wcms-ef18c5f848a5e4d1239bdc1d89e0cc9f75a10512.zip |
feature : terminal style option
+ bug fix : externallinkblank missing underscore
Diffstat (limited to 'app/view/templates/admin.php')
-rw-r--r-- | app/view/templates/admin.php | 57 |
1 files changed, 47 insertions, 10 deletions
diff --git a/app/view/templates/admin.php b/app/view/templates/admin.php index 3eba1c4..c1d7ff4 100644 --- a/app/view/templates/admin.php +++ b/app/view/templates/admin.php @@ -158,6 +158,10 @@ </article> + + + + <article> <h2>CSS</h2> @@ -166,19 +170,48 @@ <textarea name="globalcss" id="globalcss" cols="30" rows="10"><?= $globalcss ?></textarea> <label for="defaultfavicon">Default favicon</label> - <select name="defaultfavicon" id="defaultfavicon"> - <option value="">--no favicon--</option> - <?php - foreach ($faviconlist as $favicon) { - ?> - <option value="<?= $favicon ?>" <?= Config::defaultfavicon() === $favicon ? 'selected' : '' ?>><?= $favicon ?></option> - <?php - } - ?> - </select> + <select name="defaultfavicon" id="defaultfavicon"> + <option value="">--no favicon--</option> + <?php + foreach ($faviconlist as $favicon) { + ?> + <option value="<?= $favicon ?>" <?= Config::defaultfavicon() === $favicon ? 'selected' : '' ?>><?= $favicon ?></option> + <?php + } + ?> + </select> + + </article> + + + + + + + + <article> + + <h2>Interface</h2> + + <p>Set interface Style</p> + + <select name="interfacecss" id="interfacecss"> + <option value="null">--default interface style---</option> + <?php + foreach ($interfacecsslist as $interfacecss) { + ?> + <option value="<?= $interfacecss ?>" <?= $interfacecss === Config::interfacecss() ? 'selected' : '' ?>><?= $interfacecss ?></option> + <?php + } + ?> + </select> </article> + + + + <article> <h2>Tracking</h2> @@ -190,6 +223,10 @@ </article> + + + + <article> <input type="submit" value="Update configuration"> </article> |