diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-17 19:14:36 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-17 19:14:36 +0100 |
commit | 8e10d770c74acdbb5795e8fc73fd220b900d75aa (patch) | |
tree | ad2be14770a02a9507da11c7e0b174329ee37d34 /app/view/templates/editleftbar.php | |
parent | 19b603a228a63ae91d45a16dc104f795ea0cd244 (diff) | |
download | wcms-8e10d770c74acdbb5795e8fc73fd220b900d75aa.tar.gz wcms-8e10d770c74acdbb5795e8fc73fd220b900d75aa.zip |
new feature : sleep time per page
Diffstat (limited to 'app/view/templates/editleftbar.php')
-rw-r--r-- | app/view/templates/editleftbar.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/view/templates/editleftbar.php b/app/view/templates/editleftbar.php index c901c14..8302090 100644 --- a/app/view/templates/editleftbar.php +++ b/app/view/templates/editleftbar.php @@ -152,7 +152,11 @@ </fieldset> </details> - <details id="advanced" <?= !empty($page->externalcss()) || !empty($page->customhead()) ? 'open' : '' ?>> + + + + + <details id="advanced" <?= !empty($page->externalcss()) || !empty($page->customhead()) || !empty($page->sleep()) ? 'open' : '' ?>> <summary>Advanced</summary> @@ -176,6 +180,9 @@ <label for="customhead">Custom head</label> <textarea name="customhead" wrap="off" spellcheck="false" rows="<?= $page->customhead('int') ?>"><?= $page->customhead() ?></textarea> + <label for="sleep">Sleep time (seconds)</label> + <input type="number" name="sleep" id="sleep" value="<?= $page->sleep() ?>" min="0" max="180"> + </fieldset> </details> |