blob: 1aabdaa4cd1361a28b8a84a0b966f21ac17df02c (
plain)
1
2
3
4
5
6
7
8
9
10
|
<? foreach ($data as $row):
if (!$row['groups']) continue;
?>
<optgroup label="<?= htmlReady(mb_substr($row['Name'], 0, 70)) ?>">
<?= $this->render_partial('settings/statusgruppen/_options', ['data' => $row['groups']]) ?>
</optgroup>
<? if (!empty($row['sub'])): ?>
<?= $this->render_partial('settings/statusgruppen/_optgroup', ['data' => $row['sub']]) ?>
<? endif; ?>
<? endforeach; ?>
|