aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/plugin/manifest.php
blob: 2c9c72d31010d0fb4186c3e1965701c1bdc6bd93 (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
<dl>
    <dt><?= _('Name') ?></dt>
    <dd><?= htmlReady($plugin['name']) ?></dd>

    <dt><?= _('Klasse') ?></dt>
    <dd><?= htmlReady($plugin['class']) ?></dd>

    <dt><?= _('Typ') ?></dt>
    <dd><?= join(', ', $plugin['type']) ?></dd>

    <dt><?= _('Origin') ?></dt>
    <dd><?= htmlReady($manifest['origin']) ?></dd>

    <dt><?= _('Version') ?></dt>
    <dd><?= htmlReady($manifest['version']) ?></dd>

    <dt><?= _('Beschreibung') ?></dt>
    <dd>
    <? if ($manifest['description']): ?>
        <?= htmlReady($manifest['description']) ?>
    <? else: ?>
        (<?= _('keine Beschreibung vorhanden') ?>)
    <? endif; ?>
    </dd>
</dl>