aboutsummaryrefslogtreecommitdiff
path: root/w/view/templates/editleftbar.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2018-11-11 17:19:26 +0100
committervincent-peugnet <v.peugnet@free.fr>2018-11-11 17:19:26 +0100
commitd7f3313ff4514e38c9f53439cd1a1287e56e45f7 (patch)
treeabff39ab11cb317f5fcd2db558da1c59bdae9239 /w/view/templates/editleftbar.php
parent2f363e8fa26ab849539e64ff7caa21bd164e8979 (diff)
downloadwcms-d7f3313ff4514e38c9f53439cd1a1287e56e45f7.tar.gz
wcms-d7f3313ff4514e38c9f53439cd1a1287e56e45f7.zip
reboot folder
Diffstat (limited to 'w/view/templates/editleftbar.php')
-rw-r--r--w/view/templates/editleftbar.php70
1 files changed, 0 insertions, 70 deletions
diff --git a/w/view/templates/editleftbar.php b/w/view/templates/editleftbar.php
deleted file mode 100644
index 7533599..0000000
--- a/w/view/templates/editleftbar.php
+++ /dev/null
@@ -1,70 +0,0 @@
-<div id="leftbar">
- <input id="showleftpanel" name="workspace[showleftpanel]" value="1" class="toggle" type="checkbox" <?= $showleftpanel == true ? 'checked' : '' ?>>
- <label for="showleftpanel" class="toogle">◧</label>
- <div id="leftbarpanel" class="panel">
- <details id="editinfo" open>
- <summary>Infos</summary>
- <fieldset>
- <label for="title">title :</label>
- <input type="text" name="title" id="title" value="<?= $art->title(); ?>">
- <label for="description">Description :</label>
- <input type="text" name="description" id="description" value="<?= $art->description(); ?>">
- <label for="tag">Tag(s) :</label>
- <input type="text" name="tag" id="tag" value="<?= $art->tag('string'); ?>">
- <label for="secure">Privacy level :</label>
- <select name="secure" id="secure">
- <option value="0" <?= $art->secure() == 0 ? 'selected' : '' ?>>0</option>
- <option value="1" <?= $art->secure() == 1 ? 'selected' : '' ?>>1</option>
- <option value="2" <?= $art->secure() == 2 ? 'selected' : '' ?>>2</option>
- <option value="3" <?= $art->secure() == 3 ? 'selected' : '' ?>>3</option>
- </select>
- </fieldset>
- </details>
- <details>
- <summary>Advanced</summary>
- <fieldset>
- <h3>Template options</h3>
- <ul>
- <?php
- foreach ($tablist as $element => $value) {
- if(isset($art->template()[$element])) {
- $template = $art->template()[$element];
- } else {
- $template = '';
- }
- echo '<li>';
- echo '<label for="'.$element.'template">'.$element.'</label>';
- echo '<select name="template['.$element.']" id="'.$element.'template">';
- ?>
- <option value="" <?= $template === '' ? 'selected' : '' ?>>--no template--</option>
- <?php
- foreach ($artlist as $artid ) {
-
- ?>
- <option value="<?= $artid ?>" <?= $template === $artid ? 'selected' : '' ?>><?= $artid ?></option>
- <?php
- }
- echo '</select>';
- echo '</li>';
- }
-
-
- ?>
- </ul>
- </fieldset>
- </details>
- <details id="editcss" open>
- <summary>Quick CSS</summary>
-
- </details>
- <details>
- <summary>Help</summary>
- <div id="help">
- <?php $this->insert('edithelp') ?>
-
- </div>
- </details>
-
- </div>
-
-</div> \ No newline at end of file