blob: a3c91857d74d008903024f7f2424fabb19f1f42f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div style="font-style: italic"><?= htmlReady($type )?>:
<input disabled type="checkbox" <? if ($folder->isReadable()) echo 'checked'; ?>>
<strong>Lesen</strong>
<input disabled type="checkbox" <? if ($folder->isWritable()) echo 'checked'; ?>>
<strong>Schreiben</strong>
<input disabled type="checkbox" <? if ($folder->isVisible()) echo 'checked'; ?>>
<strong>Sichtbarkeit</strong>
</div>
<? if ($folderdata['description']) : ?>
<hr>
<div>
<?= formatReady($folderdata['description']) ?>
</div>
<? endif ?>
|