|
= Studip\Button::create(
_('Herunterladen'),
'download'
) ?>
if ($folder->isWritable($GLOBALS['user']->id)): ?>
= Studip\Button::create(
_('Verschieben'),
'move',
[
'data-dialog' => '',
'disabled' => 'disabled'
]
) ?>
endif ?>
if ($folder->isReadable($GLOBALS['user']->id)): ?>
= Studip\Button::create(
_('Kopieren'),
'copy',
[
'data-dialog' => '',
'disabled' => '',
]
) ?>
endif ?>
if ($folder->isWritable($GLOBALS['user']->id)): ?>
= Studip\Button::create(
_('Löschen'),
'delete', [
'disabled' => '',
'data-confirm' => _('Soll die Auswahl wirklich gelöscht werden?')
]
) ?>
endif ?>
if ($folder->isWritable($GLOBALS['user']->id)): ?>
= Studip\LinkButton::create(
_('Dokument hinzufügen'),
'#',
[
'onclick' => 'STUDIP.Files.openAddFilesWindow(); return false;'
]
) ?>
endif ?>
|