aboutsummaryrefslogtreecommitdiff
path: root/app/view
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2019-08-16 15:23:42 +0200
committervincent-peugnet <v.peugnet@free.fr>2019-08-16 15:23:42 +0200
commitb5ebee8dea28e3a9c5160de1c56f7715153f3af4 (patch)
treeb7729495fdfa58210612d8280058a7412c57e9ea /app/view
parent566b995bab45355d814ac5a8bfbf18e3a59c14ba (diff)
downloadwcms-b5ebee8dea28e3a9c5160de1c56f7715153f3af4.tar.gz
wcms-b5ebee8dea28e3a9c5160de1c56f7715153f3af4.zip
Generate list code function working
Diffstat (limited to 'app/view')
-rw-r--r--app/view/templates/editleftbar.php2
-rw-r--r--app/view/templates/home.php39
2 files changed, 39 insertions, 2 deletions
diff --git a/app/view/templates/editleftbar.php b/app/view/templates/editleftbar.php
index b8f4d4d..bd3fd15 100644
--- a/app/view/templates/editleftbar.php
+++ b/app/view/templates/editleftbar.php
@@ -174,7 +174,7 @@
?>
<label for="customhead">Custom head</label>
- <textarea name="customhead" wrap="off" spellcheck="false"><?= $art->customhead() ?></textarea>
+ <textarea name="customhead" wrap="off" spellcheck="false" rows="<?= $art->customhead('int') ?>"><?= $art->customhead() ?></textarea>
</fieldset>
diff --git a/app/view/templates/home.php b/app/view/templates/home.php
index e41c2cc..922aaf0 100644
--- a/app/view/templates/home.php
+++ b/app/view/templates/home.php
@@ -31,7 +31,7 @@
<details id="import">
<summary>Import W JSON page file</summary>
<i>Upload page file as json</i>
- <form action="<?=$this->url('artupload') ?>" method="post" enctype="multipart/form-data">
+ <form action="<?= $this->url('artupload') ?>" method="post" enctype="multipart/form-data">
<input type="file" name="pagefile" id="pagefile" accept=".json">
<label for="pagefile">JSON Page file</label>
<input type="hidden" name="erase" value="0">
@@ -53,6 +53,43 @@
</form>
</details>
+<details id="list" <?= isset($optlist) ? 'open' : '' ?>>
+ <summary>Generate list</summary>
+ <i>Generate code to display a list of pages</i>
+ <form action="<?= $this->url('homequery') ?>" method="post">
+ <input type="hidden" name="query" value="1">
+
+ <input type="hidden" name="description" value="0">
+ <input type="checkbox" name="description" id="list_description" value="1" <?= isset($optlist) && $optlist->description() ? 'checked' : '' ?>>
+ <label for="list_description">Show description</label>
+ </br>
+ <input type="hidden" name="thumbnail" value="0">
+ <input type="checkbox" name="thumbnail" id="list_thumbnail" value="1" <?= isset($optlist) && $optlist->thumbnail() ? 'checked' : '' ?>>
+ <label for="list_thumbnail">Show thumbnail</label>
+ </br>
+ <input type="hidden" name="date" value="0">
+ <input type="checkbox" name="date" id="list_date" value="1" <?= isset($optlist) && $optlist->date() ? 'checked' : '' ?>>
+ <label for="list_date">Show date</label>
+ </br>
+ <input type="hidden" name="author" value="0">
+ <input type="checkbox" name="author" id="list_author" value="1" <?= isset($optlist) && $optlist->author() ? 'checked' : '' ?>>
+ <label for="list_author">Show author(s)</label>
+ </br>
+ <select name="style" id="list_style">
+ <option value="0">list</option>
+ <option value="1" <?= isset($optlist) && $optlist->style() == 1 ? 'selected' : '' ?>>div</option>
+ </select>
+ <input type="submit" value="generate">
+ </form>
+
+ <?php
+ if(isset($optlist)) {
+ echo '<code>' . $optlist->getcode() . '</code>';
+ }
+
+ ?>
+</details>
+
<form action="/massedit" method="post">