blob: 3e93488c89862c90e7811533a8b427ded670cc28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?
# Lifter010: TODO
?>
<? if ($content_for_layout != ''): ?>
<? if (!isset($admin_title)) $admin_title = _('Administration') ?>
<table class="index_box">
<tr>
<td class="table_header_bold" style="font-weight: bold;">
<? if (isset($icon_url)): ?>
<?= Assets::img($icon_url, ['class' => 'middle']) ?>
<? endif ?>
<?= htmlReady($title) ?>
</td>
<td class="table_header_bold" style="text-align: right;">
<? if (isset($admin_url)): ?>
<a href="<?= URLHelper::getLink($admin_url) ?>" title="<?= htmlReady($admin_title) ?>">
<?= Icon::create('admin', 'info_alt')->asImg(16, ["alt" => htmlReady($admin_title)]) ?>
</a>
<? endif ?>
</td>
</tr>
<tr>
<td class="index_box_cell" colspan="2">
<?= $content_for_layout ?>
</td>
</tr>
</table>
<? endif ?>
|