2022-02-08 17:00:08 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('themeFontBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'theme',
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::button('themeFontAdd', [
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/fontAdd',
|
|
|
|
'ico' => 'plus',
|
|
|
|
'value' => 'Fonte'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-02-08 13:23:34 +01:00
|
|
|
<?php if($module::$fontsList): ?>
|
2022-02-10 10:44:35 +01:00
|
|
|
<?php echo template::table([3, 3, 3, 3, 1], $module::$fontsList, ['Family Name', 'Font Id', 'Affectation', 'Ressource', 'Effacer']); ?>
|
2022-02-08 13:23:34 +01:00
|
|
|
<?php else: ?>
|
2022-02-08 17:00:08 +01:00
|
|
|
<?php echo template::speech('Aucune fonte !'); ?>
|
2022-02-12 17:10:59 +01:00
|
|
|
<?php endif; ?>
|