diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-11-10 21:43:24 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-11-10 21:43:24 +0100 |
commit | 2f363e8fa26ab849539e64ff7caa21bd164e8979 (patch) | |
tree | 238f2689e44bfc26329f970ced4c678b1ab6818d /w/view/templates/editrightbar.php | |
parent | 687b1f851abbb28750d2921d4f5beaac24b3249d (diff) | |
download | wcms-2f363e8fa26ab849539e64ff7caa21bd164e8979.tar.gz wcms-2f363e8fa26ab849539e64ff7caa21bd164e8979.zip |
sidebars-html-inserts
Diffstat (limited to 'w/view/templates/editrightbar.php')
-rw-r--r-- | w/view/templates/editrightbar.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/w/view/templates/editrightbar.php b/w/view/templates/editrightbar.php new file mode 100644 index 0000000..92d5f81 --- /dev/null +++ b/w/view/templates/editrightbar.php @@ -0,0 +1,20 @@ +<div id="rightbar"> + <input id="showrightpanel" name="workspace[showrightpanel]" value="1" class="toggle" type="checkbox" <?= $showrightpanel == true ? 'checked' : '' ?>> + <label for="showrightpanel" class="toogle">◧</label> + <div id="rightbarpanel" class="panel"> + <details id="linkassist" open> + <summary>Links</summary> + <?php + foreach ($artlist as $item ) { + ?> + <a href="?id=<?= $item ?>&aff=edit"><?= $item ?></a> + <input type="text" value="[<?= $item ?>](=<?= $item ?>)"> + <?php + } + + ?> + </details> + + </div> + +</div>
\ No newline at end of file |