blob: dfdb9f80d2077d5639f4cbef215bba3a1956ba37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* @var QuestionnaireQuestion $vote
* @var string $iconshape
*/
?>
<div class="description_container">
<div class="icon_container">
<?= Icon::create($iconshape, Icon::ROLE_INFO) ?>
</div>
<article class="description">
<? if (isset($vote->questiondata['mandatory']) && $vote->questiondata['mandatory']) : ?>
<?= Icon::create('star', Icon::ROLE_ATTENTION)->asImg(['class' => 'text-bottom', 'alt' => '']) ?>
<?= _('Pflichtantwort') ?>
<? endif ?>
<?= formatReady($vote->questiondata['description']) ?>
</article>
</div>
|