blob: 26c45b7ca1bfac6da3b6e8588287a8a95fec2105 (
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)->asSvg(['class' => 'text-bottom', 'alt' => '']) ?>
<?= _('Pflichtantwort') ?>
<? endif ?>
<?= formatReady($vote->questiondata['description']) ?>
</article>
</div>
|