diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 01:54:50 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 01:55:00 +0100 |
commit | 40ef00fee7286a186673ff3fb26b6802421b2bc4 (patch) | |
tree | d148fff0a745e72454cfc8b704048478a2cdc07a /app/view/templates/admin.php | |
parent | cdd3895f772d60404c73abf9067b0f0a09e4ebf2 (diff) | |
download | wcms-40ef00fee7286a186673ff3fb26b6802421b2bc4.tar.gz wcms-40ef00fee7286a186673ff3fb26b6802421b2bc4.zip |
work on thumbnail admin
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 7186f26..ab71957 100644 --- a/app/view/templates/admin.php +++ b/app/view/templates/admin.php @@ -229,6 +229,18 @@ ?> </select> + <label for="defaultfavicon">Default thumbnail</label> + <select name="defaultthumbnail" id="defaultthumbnail" form="admin"> + <option value="">--no thumbnail--</option> + <?php + foreach ($thumbnaillist as $thumbnail) { + ?> + <option value="<?= $thumbnail ?>" <?= Wcms\Config::defaultthumbnail() === $thumbnail ? 'selected' : '' ?>><?= $thumbnail ?></option> + <?php + } + ?> + </select> + <h2 id="databases">Databases</h2> |