aboutsummaryrefslogtreecommitdiff
path: root/app/views/api/oauth2/applications/details.php
blob: 12533a07543f0bf17313415c7aa495ad3662f149 (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
<dl>
    <dt><?= _('Name') ?></dt>
    <dl><?= htmlReady($application['name']) ?></dl>

    <dt><?= _('Beschreibung') ?></dt>
    <dl><?= htmlReady($application['description']) ?></dl>

    <dt><?= _('Von wem wird der OAuth2-Client entwickelt?') ?></dt>
    <dl>
        <a rel="noreferrer noopener" target="_blank"
            href="<?= htmlReady($application['homepage']) ?>">
            <?= htmlReady($application['owner']) ?>
        </a>
    </dl>

    <dt><?= _('Berechtigungen') ?></dt>
    <dd>
        <ul>
            <? foreach ($application['scopes'] as $scope) { ?>
                <li><?= htmlReady($scope->description) ?></li>
            <? } ?>
        </ul>
    </dd>
</dl>