blob: 2c47663a63c155f5dc25215a39d03063a81fc00b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div class="controls">
<?= $tabs ?>
</div>
<div class="content">
<h2><?= $this->translate('Database backend') ?></h2>
<?= $this->qlink(
$this->translate('Create a New Resource'),
'config/createresource',
null,
array(
'class' => 'button-link',
'data-base-target' => '_next',
'icon' => 'plus',
'title' => $this->translate('Create a new resource'),
)
) ?>
<?= $backendConfig ?>
<h2><?= $this->translate('Configure module') ?></h2>
<?= $globalConfig ?>
</div>
|