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