diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 04:13:14 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 04:13:14 +0100 |
commit | f3bc327be7be8a1aeeb49c7f46c86628e5d52e77 (patch) | |
tree | 1cff58f877471deeadf2b19e949f0c19d99fd97c /app/view/templates/homemenu.php | |
parent | 27f1fb9c19fa2c2fd28863809ccc6ba526499c0d (diff) | |
download | wcms-f3bc327be7be8a1aeeb49c7f46c86628e5d52e77.tar.gz wcms-f3bc327be7be8a1aeeb49c7f46c86628e5d52e77.zip |
multi edit can unset templates thumbnail favicon
Diffstat (limited to 'app/view/templates/homemenu.php')
-rw-r--r-- | app/view/templates/homemenu.php | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/app/view/templates/homemenu.php b/app/view/templates/homemenu.php index e437a4e..83d2b90 100644 --- a/app/view/templates/homemenu.php +++ b/app/view/templates/homemenu.php @@ -69,7 +69,7 @@ <strong>Privacy</strong> </br> <select name="datas[secure]" id="setlevel"> - <option value="" disabled selected>--change privacy--</option> + <option value="" selected>--keep privacy--</option> <option value="0">public</option> <option value="1">private</option> <option value="2">not_published</option> @@ -79,7 +79,8 @@ <strong>Images</strong> </br> <select name="datas[favicon]" id="favicon"> - <option value="" disabled selected>--set favicon--</option> + <option value="" selected>--keep favicon--</option> + <option value="!" >--unset favicon--</option> <?php foreach ($faviconlist as $favicon) { echo '<option value ="' . $favicon . '">' . $favicon . '</option>'; @@ -88,20 +89,24 @@ </select> <label for="favicon">Favicon</label> </br> + <select name="datas[thumbnail]" id="thumbnail"> - <option value="" disabled selected>--set thumbnail--</option> + <option value="" selected>--keep thumbnail--</option> + <option value="!">--unset thumbnail--</option> <?php foreach ($thumbnaillist as $thumbnail) { echo '<option value ="' . $thumbnail . '">' . $thumbnail . '</option>'; } ?> </select> - <label for="favicon">Thumnail</label> + <label for="thumbnail">Thumnail</label> </br> + <strong>Templates</strong> </br> <select name="datas[templatebody]" id="templatebody"> - <option value="" disabled selected>--set template body--</option> + <option value="" selected>--keep template body--</option> + <option value="!" >--unset template body--</option> <?php foreach ($pagelist as $page) { echo '<option value ="' . $page . '">' . $page . '</option>'; @@ -110,8 +115,10 @@ </select> <label for="templatebody">Body</label> </br> + <select name="datas[templatecss]" id="templatecss"> - <option value="" disabled selected>--set css template--</option> + <option value="" selected>--keep css template--</option> + <option value="!" >--unset css template--</option> <?php foreach ($pagelist as $page) { echo '<option value ="' . $page . '">' . $page . '</option>'; @@ -119,8 +126,10 @@ ?> </select> <label for="templatecss">CSS</label> </br> + <select name="datas[templatejavascript]" id="templatejavascript"> - <option value="" disabled selected>--set javascript template--</option> + <option value="" selected>--keep javascript template--</option> + <option value="!" >--unset javascript template--</option> <?php foreach ($pagelist as $page) { echo '<option value ="' . $page . '">' . $page . '</option>'; |