addLink(
_('OAuth2-Client hinzufügen'),
$controller->url_for('api/oauth2/clients/add'),
Icon::create('add')
);
$sidebar->addWidget($actions);
?>
if (isset($clients) && count($clients)) { ?>
= _('Registrierte OAuth2-Clients') ?>
foreach ($clients as $client) { ?>
= htmlReady($client['name']) ?>
- = _('Beschreibung') ?>
- = htmlReady($client['description']) ?>
- = _('Entwickelt durch') ?>
-
= htmlReady($client['owner']) ?>
- = _('client_id') ?>
- = htmlReady($client['id']) ?>
- = _('Redirect-URIs') ?>
-
foreach ($client->redirectUris() as $uri) { ?>
- = htmlReady($uri) ?>
} ?>
- = _('Kann kryptographische Geheimnisse bewahren?') ?>
- = $client->confidential() ? _('Ja') : _('Nein') ?>
- = _('Notizen (nur für Root-Accounts sichtbar)') ?>
-
= htmlReady($client['admin_notes']) ?>
} ?>
} ?>