|
= ($tour->settings->active) ? ' checked' : '' ?>>
|
= htmlReady($tour->name) ?>
= tooltipIcon($tour->description) ?>
|
= htmlReady($tour->studip_version) ?> |
= htmlReady($tour->language) ?> |
= htmlReady($tour->type) ?> |
= htmlReady($tour->settings->access) ?> |
if (count($tour->steps)): ?>
= htmlReady($tour->steps[0]->route) ?>
endif; ?>
|
= count($tour->steps) ?> |
= $tour->chdate ? date('d.m.Y H:i', $tour->chdate) : '' ?> |
if ($tour->author) : ?>
= htmlReady($tour->author->getFullName()) ?>
elseif ($tour->author_email) : ?>
= htmlReady($tour->author_email) ?>
else : ?>
= _('unbekannt') ?>
endif ?>
|
= ActionMenu::get()->setContext(
$tour->name
)->addLink(
$controller->url_for('tour/admin_details/' . $tour_id),
_('Tour bearbeiten'),
Icon::create('edit')
)->addLink(
$controller->url_for('tour/export/' . $tour_id),
_('Tour exportieren'),
Icon::create('export'),
['disabled' => count($tour->steps) === 0]
)->addButton(
'tour_remove_' . $tour_id,
_('Tour löschen'),
Icon::create('trash')
) ?>
|
endforeach ?>