Frédéric Tempez
b2094b7834
This reverts commit 81f2fad880a7377f40b831ab75d55a08855f3017, reversing changes made to 333bc1f9cba6c5c2e66db309dd83a5774d1ec90e.
22 lines
677 B
PHP
22 lines
677 B
PHP
<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>
|
|
<?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; ?>
|