aboutsummaryrefslogtreecommitdiff
path: root/w/view/templates/editrightbar.php
blob: 92d5f818f229f0e550ef4d3c6918b35826ef62bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>