blob: 153e7c9f8ff93bed43265627e27b037f5b027449 (
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="drag-handle"></span>
<h1><?= htmlready($tool->getDisplayName()) ?></h1>
</header>
</article>
<? endforeach ?>
<? endif ?>
</section>
|