blob: 9d2044b2210b222432c5e2bcfc98db65907b1d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<section class="contentbox course-statusgroups" data-sortable="<?=$controller->action_link('sorttools', ['order' => 1]) ?>">
<? if ($sem->tools): ?>
<? foreach ($sem->tools as $tool): ?>
<?php if (!$tool->getStudipModule()) continue; ?>
<article class="draggable" id="plugin_<?= $tool->plugin_id ?>">
<header>
<span class="sg-sortable-handle"></span>
<h1><?= htmlready($tool->getDisplayName()) ?></h1>
</header>
</article>
<? endforeach ?>
<? endif ?>
</section>
|