blob: fa249ef9dff2c4d1a7cecdda0b61f1403b377488 (
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
|
<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) ?>" target="_blank"><?= $item ?></a>
<?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>
|