forked from ZwiiCMS-Team/ZwiiCMS
21 lines
699 B
PHP
21 lines
699 B
PHP
<div class="row">
|
|
<div class="col1">
|
|
<?php echo template::button('themeFontBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . 'theme',
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
<div class="col1 offset10">
|
|
<?php echo template::button('themeFontAdd', [
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/fontAdd',
|
|
'value' => template::ico('plus'),
|
|
'help' => 'Ajouter une fonte'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<?php if($module::$fontsList): ?>
|
|
<?php echo template::table([3, 3, 3, 3, 1], $module::$fontsList, ['Family Name', 'Font Id', 'Affectation', 'Ressource', 'Effacer']); ?>
|
|
<?php else: ?>
|
|
<?php echo template::speech('Aucune fonte !'); ?>
|
|
<?php endif; ?>
|