Blame view

src/Template/Element/Flash/default.ctp 157 Bytes
6c4edfa3   Alexandre   First Commit LabI...
1
2
<?php
$class = 'message';
63c3cb16   epallier   Nombreux petits b...
3
if (! empty($params['class'])) {
6c4edfa3   Alexandre   First Commit LabI...
4
5
6
7
    $class .= ' ' . $params['class'];
}
?>
<div class="<?= h($class) ?>"><?= h($message) ?></div>