blob: b424e6ef537e365af3e52a241a07f731353a3286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?
$_id = htmlReady(implode('_', (array) $area->getId()));
?>
<li id="lvgruppe_selection_<?= $_id ?>">
<? if (!$locked) : ?>
<input title="<?= _('Zuordnung entfernen') ?>"
data-id="<?= $_id ?>" data-course_id="<?= htmlReady($course_id) ?>"
style="vertical-align: text-top;"
type="image"
name="lvgruppe_selection[remove][<?= $_id ?>]"
src="<?= Icon::create('trash', 'clickable')->asImagePath(); ?>">
<? endif; ?>
<span class="lvgruppe_selection_expand">
<?= htmlReady($area->getDisplayName()) ?>
<input title="<?= _('Alle Zuordnungen anzeigen') ?>"
data-id="<?= $_id ?>" data-course_id="<?= htmlReady($course_id) ?>"
style="vertical-align: text-top;"
type="image"
name="lvgruppe_selection[details][<?= $_id ?>]"
src="<?= Icon::create('info', 'clickable')->asImagePath() ?>">
</span>
<ul>
<? if (Request::isXhr()) : ?>
<?= $this->render_partial('course/lvgselector/entry_trails') ?>
<? endif; ?>
</ul>
<input type="hidden" name="lvgruppe_selection[areas][]" class="lvgruppe_selection_area" value="<?= $_id ?>">
</li>
|