blob: 6e066c82cd673b3e9a55df705eb4f10142f85548 (
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)->asImg(20) ?>
</div>
<article class="description">
<? if (isset($vote->questiondata['mandatory']) && $vote->questiondata['mandatory']) : ?>
<?= Icon::create('star', Icon::ROLE_ATTENTION)->asImg(20, ['class' => 'text-bottom', 'alt' => '']) ?>
<?= _('Pflichtantwort') ?>
<? endif ?>
<?= formatReady($vote->questiondata['description']) ?>
</article>
</div>
|