aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/plugin/manifest.php
blob: 8f61111c7bd8aed0e93bf6e7931e6cefc1b40047 (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
31
<?php
/**
 * @var array $plugin
 * @var array $manifest
 */
?>
<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 (!empty($manifest['description'])): ?>
        <?= htmlReady($manifest['description']) ?>
    <? else: ?>
        (<?= _('keine Beschreibung vorhanden') ?>)
    <? endif; ?>
    </dd>
</dl>