|
= htmlReady($config->name) ?>
= isset($config->conf['not_fixed_after_migration']) ? '(!)' : '' ?>
|
= htmlReady($config->description) ?>
|
= date('d.m.Y G:H', $config->chdate) ?>
|
if ($config->author) : ?>
= htmlReady($config->author->getFullName()) ?>
else : ?>
= _('unbekannt') ?>
endif ?>
|
= ActionMenu::get()->addLink(
$controller->editURL($config->type, $config->id),
_('Konfiguration bearbeiten'),
Icon::create('edit')
)->addLink(
$controller->infoURL($config->id),
_('Informationen anzeigen'),
Icon::create('infopage'),
['data-dialog' => '']
)->addLink(
$controller->downloadURL($config->id),
_('Konfiguration herunterladen'),
Icon::create('download')
)->addButton(
'delete',
_('Konfiguration löschen'),
Icon::create('trash'),
[
'formaction' => $controller->deleteURL($config->id),
'title' => _('Konfiguration löschen'),
'data-confirm' => sprintf(_('Soll die Konfiguration "%s" gelöscht werden?'), htmlReady($config->name)),
'form' => 'extern-page-index'
]
)->render()
?>
|