Drapeaux dans la table
This commit is contained in:
parent
7f9f97c6a2
commit
8cf721bfe7
@ -474,7 +474,7 @@ class template {
|
||||
/**
|
||||
* Crée un drapeau du site courante
|
||||
* @param string $langId Id de la langue à affiche ou selected pour la langue courante
|
||||
* @param string $margin Ajoute un margin autour de l'icône (choix : left, right, all)
|
||||
* @param string size en pixels ou en rem
|
||||
* @return string
|
||||
*/
|
||||
public static function flag($langId, $size = 'auto') {
|
||||
@ -493,11 +493,11 @@ class template {
|
||||
$lang = 'fr_FR';
|
||||
}
|
||||
}
|
||||
return '<img class="flag" src="' . helper::baseUrl(false) . 'core/vendor/i18n/png/' . $lang . '.png"
|
||||
return '<img class="flag" src="' . helper::baseUrl(false) . 'core/vendor/i18n/png/' . $langId . '.png"
|
||||
width="' . $size .'"
|
||||
height="' . $size .'"
|
||||
title="' . $lang .'"
|
||||
alt="(' . $lang . ')"/>';
|
||||
title="' . $langId .'"
|
||||
alt="(' . $langId . ')"/>';
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -128,6 +128,7 @@ class translate extends common {
|
||||
// tableau des langues installées
|
||||
if (is_dir(self::DATA_DIR . $keyi18n) ) {
|
||||
self::$languagesInstalled [] = [
|
||||
template::flag($keyi18n, '50%') ,
|
||||
$value . ' (' . $keyi18n . ')' ,
|
||||
self::$i18nUI === $keyi18n ? '(langue de l\'interface)' : '',
|
||||
'',
|
||||
@ -209,7 +210,7 @@ class translate extends common {
|
||||
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(),
|
||||
'redirect' => helper::baseUrl() . 'translate',
|
||||
'notification' => 'Modifications enregistrées',
|
||||
'state' => true
|
||||
]);
|
||||
|
@ -72,7 +72,7 @@
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php if($module::$languagesInstalled): ?>
|
||||
<?php echo template::table([2, 2, 6, 1, 1], $module::$languagesInstalled, ['Langue', '', '', '', '']); ?>
|
||||
<?php echo template::table([1, 3, 2, 4, 1, 1], $module::$languagesInstalled, ['Langue', '', '', '', '', '']); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user