aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/editrightbar.php
blob: 74ba1dd280903c81f3c612aa60ab89e81b0c74a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div id="rightbar" class="bar">
    <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="<?= $this->uart('artedit', $item) ?>"><?= $item ?></a>
            <input type="text" value="[<?= $item ?>](=<?= $item ?>)">
            <?php
        }

        ?>
    </details>
    <details id="fonts" open>
        <summary>Fonts</summary>
        <select multiple>
        <?php
        foreach ($fonts as $font ) {
            echo '<option value="'.$font.'">'.$font.'</option>';
        }
        ?>
        </select>
    </details>
   
    </div>

</div>