diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 02:40:16 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 02:40:16 +0100 |
commit | ad3aed389f2e0d69802641f5a5b7c6add73f1ce5 (patch) | |
tree | 1e4abd614799be623a2ae696fa960d3fba93a5a6 /app/view/templates/admin.php | |
parent | fc56b60be55b4340d647d2017fdeb24b81eb84b6 (diff) | |
download | wcms-ad3aed389f2e0d69802641f5a5b7c6add73f1ce5.tar.gz wcms-ad3aed389f2e0d69802641f5a5b7c6add73f1ce5.zip |
templateoption
Diffstat (limited to 'app/view/templates/admin.php')
-rw-r--r-- | app/view/templates/admin.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/view/templates/admin.php b/app/view/templates/admin.php index 7f94833..5edf262 100644 --- a/app/view/templates/admin.php +++ b/app/view/templates/admin.php @@ -73,6 +73,18 @@ <label for="globalcss">Edit global css that will apply to every pages</label> <textarea name="globalcss" id="globalcss" cols="30" rows="10"><?= $globalcss ?></textarea> + <label for="defaultfavicon">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> + <input type="submit" value="Update configuration"> </form> |