diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 03:32:31 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 03:32:31 +0100 |
commit | 27f1fb9c19fa2c2fd28863809ccc6ba526499c0d (patch) | |
tree | 5dbbc75a29a4b160db3042c41367d81e0285c70e /app/view/templates/homemenu.php | |
parent | eab190e895124ef643c2b0574c84f3424857eeac (diff) | |
download | wcms-27f1fb9c19fa2c2fd28863809ccc6ba526499c0d.tar.gz wcms-27f1fb9c19fa2c2fd28863809ccc6ba526499c0d.zip |
thumbnail can be changed in multi edit
Diffstat (limited to 'app/view/templates/homemenu.php')
-rw-r--r-- | app/view/templates/homemenu.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/view/templates/homemenu.php b/app/view/templates/homemenu.php index 51a58e9..e437a4e 100644 --- a/app/view/templates/homemenu.php +++ b/app/view/templates/homemenu.php @@ -76,7 +76,7 @@ </select> <label for="setlevel">Privacy level</label> </br> - <strong>Favicon</strong> + <strong>Images</strong> </br> <select name="datas[favicon]" id="favicon"> <option value="" disabled selected>--set favicon--</option> @@ -88,6 +88,16 @@ </select> <label for="favicon">Favicon</label> </br> + <select name="datas[thumbnail]" id="thumbnail"> + <option value="" disabled selected>--set thumbnail--</option> + <?php + foreach ($thumbnaillist as $thumbnail) { + echo '<option value ="' . $thumbnail . '">' . $thumbnail . '</option>'; + } + ?> + </select> + <label for="favicon">Thumnail</label> + </br> <strong>Templates</strong> </br> <select name="datas[templatebody]" id="templatebody"> |