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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
<? if (count($institutes) === 0): ?>
<?= MessageBox::info(_('Sie sind keinem Institut / keiner Einrichtung zugeordnet!')); ?>
<? else: ?>
<? $inst_count = 0; ?>
<section class="contentbox">
<header>
<h1><?= _('Zuordnungen zu Einrichtungen') ?></h1>
</header>
<? foreach ($institutes as $inst_id => $institute): ?>
<article class="<?= ContentBoxHelper::classes($inst_id) ?><? if (Request::get('type') === 'institute' && isset($role_id) && Request::get('open') === $role_id) : ?>open<? endif ?>">
<header>
<h1>
<a href="<?= ContentBoxHelper::href($inst_id) ?>">
<?= htmlReady($institute['name']) ?>
</a>
</h1>
<nav>
<? if (!$locked && $inst_count > 0) : ?>
<a href="<?= $controller->url_for('settings/statusgruppen/move', $inst_id, 'up') ?>">
<?= Icon::create('arr_2up', Icon::ROLE_SORT) ?>
</a>
<? elseif (!$locked && count($institutes) > 1): ?>
<?= Icon::create('arr_2up', Icon::ROLE_INACTIVE) ?>
<? endif; ?>
<? if (!$locked && $inst_count + 1 < count($institutes)): ?>
<a href="<?= $controller->url_for('settings/statusgruppen/move', $inst_id, 'down') ?>">
<?= Icon::create('arr_2down', Icon::ROLE_SORT) ?>
</a>
<? elseif (!$locked && count($institutes) > 1): ?>
<?= Icon::create('arr_2down', Icon::ROLE_INACTIVE) ?>
<? endif; ?>
<? if ($GLOBALS['perm']->have_studip_perm('admin', $inst_id)) : ?>
<a href="<?= URLHelper::getURL('dispatch.php/institute/members', ['cid' => $inst_id, 'admin_view' => 1]) ?>">
<?= Icon::create('link-intern')->asImg(['title' => _('Zur Einrichtung')]) ?>
</a>
<? else: ?>
<a href="<?= URLHelper::getURL('dispatch.php/institute/overview', ['auswahl' => $inst_id]) ?>">
<?= Icon::create('link-intern')->asImg(['title' => _('Zur Einrichtung')]) ?>
</a>
<? endif; ?>
</nav>
</header>
<section>
<article>
<?= $this->render_partial('settings/statusgruppen/modify_institute', [
'followers' => count($institute['flattened']) > 0,
'inst_id' => $inst_id,
'institute' => $institute,
]) ?>
</article>
</section>
</article>
<?
$inst_count += 1;
$role_count = 1;
$max_roles = isset($institute['flattened']) ? count($institute['flattened']) : 0;
?>
<? foreach ($institute['flattened'] as $role_id => $role): ?>
<article class="indented <?= ContentBoxHelper::classes($role_id) ?> <? if (Request::get('type') === 'role' && Request::get('open') === $role_id) : ?>open<? endif ?>">
<header>
<h1>
<? if (isset($institute['datafields'][$role_id]) && count($institute['datafields'][$role_id]) > 0): ?>
<a href="<?= ContentBoxHelper::href($role_id) ?>"
name="<?= $role_id ?>"
class="link <?= Request::get('open') === $role_id ? 'open' : 'closed' ?>">
<?= htmlReady($role['name_long']) ?>
</a>
<? else: ?>
<a class="link" href="<?= ContentBoxHelper::href($role_id) ?>">
<?= htmlReady($role['name_long']) ?>
</a>
<? endif; ?>
</h1>
<nav>
<? if ($GLOBALS['perm']->have_studip_perm('admin', $inst_id) && !$locked) : ?>
<a href="<?= $controller->url_for('settings/statusgruppen/verify/delete/' . $role_id) ?>#<?= $role_id ?>">
<?= Icon::create('trash')->asImg(['title' => _('Löschen')]) ?>
</a>
<a href="<?= URLHelper::getURL('dispatch.php/admin/statusgroups', ['cid' => $inst_id]) ?>#group-<?= $role_id ?>">
<?= Icon::create('link-intern')->asImg(['title' => _('Zur Funktion')]) ?>
</a>
<? endif; ?>
</nav>
</header>
<section>
<?= $this->render_partial('settings/statusgruppen/modify', [
'followers' => $role_count < $max_roles,
'inst_id' => $inst_id,
'role_id' => $role_id,
'institute' => Institute::find($inst_id),
'datafields' => $institute['datafields'][$role_id] ?? [],
'role' => $role['role'] ?? null,
]) ?>
</section>
</article>
<? $role_count += 1; ?>
<? endforeach; ?>
<? endforeach; ?>
</section>
<? if ($GLOBALS['perm']->have_perm('admin') && empty($locked)): ?>
<?= $this->render_partial('settings/statusgruppen/assign', compact('admin_insts')) ?>
<? endif; ?>
<? endif; ?>
|