10 lines
392 B
PHTML
Executable File
10 lines
392 B
PHTML
Executable File
<?php $this->headTitle($this->translate('Help')); ?>
|
|
<?php if ($help = $this->helpText()->render($topic)): ?>
|
|
<?php foreach ($this->helpText()->getWarnings() as $warning): ?>
|
|
<p class="alert alert-warning"><?=$this->transEsc($warning)?></p>
|
|
<?php endforeach; ?>
|
|
<?=$help?>
|
|
<?php else: ?>
|
|
<p class="alert alert-danger"><?=$this->transEsc('help_page_missing')?></p>
|
|
<?php endif; ?>
|