Etendre la fonction de traduction à tout le template
This commit is contained in:
parent
914ea0dc79
commit
eb55cb5ea4
@ -22,6 +22,9 @@ class template {
|
|||||||
'value' => 'Bouton',
|
'value' => 'Bouton',
|
||||||
'help' => ''
|
'help' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['value'] = helper::translate($attributes['value']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Retourne le html
|
// Retourne le html
|
||||||
return sprintf(
|
return sprintf(
|
||||||
'<a %s class="button %s %s %s" %s>%s</a>',
|
'<a %s class="button %s %s %s" %s>%s</a>',
|
||||||
@ -52,7 +55,9 @@ class template {
|
|||||||
'limit' => false, // captcha simple
|
'limit' => false, // captcha simple
|
||||||
'type'=> 'alpha' // num(érique) ou alpha(bétique)
|
'type'=> 'alpha' // num(érique) ou alpha(bétique)
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['value'] = helper::translate($attributes['value']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Captcha quatre opérations
|
// Captcha quatre opérations
|
||||||
// Limite addition et soustraction selon le type de captcha
|
// Limite addition et soustraction selon le type de captcha
|
||||||
$numbers = [0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20];
|
$numbers = [0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20];
|
||||||
@ -176,6 +181,9 @@ class template {
|
|||||||
'id' => $nameId,
|
'id' => $nameId,
|
||||||
'name' => $nameId
|
'name' => $nameId
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$label = helper::translate($label);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['checked'] = (bool) common::$inputBefore[$attributes['id']];
|
$attributes['checked'] = (bool) common::$inputBefore[$attributes['id']];
|
||||||
@ -228,6 +236,9 @@ class template {
|
|||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'value' => ''
|
'value' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
||||||
@ -292,6 +303,9 @@ class template {
|
|||||||
'type' => 2,
|
'type' => 2,
|
||||||
'value' => ''
|
'value' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['value'] = helper::translate($attributes['value']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
||||||
@ -385,6 +399,8 @@ class template {
|
|||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function help($text) {
|
public static function help($text) {
|
||||||
|
// Traduction de l'étiquette
|
||||||
|
$text = helper::translate($text);
|
||||||
return '<span class="helpButton" data-tippy-content="' . $text . '">' . self::ico('help') . '<!----></span>';
|
return '<span class="helpButton" data-tippy-content="' . $text . '">' . self::ico('help') . '<!----></span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -439,8 +455,9 @@ class template {
|
|||||||
'help' => '',
|
'help' => '',
|
||||||
'id' => ''
|
'id' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide
|
||||||
$attributes['help'] = helper::translate($attributes['help']);
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
|
// Contenu de l'icône
|
||||||
$item = $attributes['href'] ? '<a data-tippy-content="' . $attributes['help'] . '" href="' . $attributes['href'] . '" ' . $attributes['attr']. ' >' : '';
|
$item = $attributes['href'] ? '<a data-tippy-content="' . $attributes['help'] . '" href="' . $attributes['href'] . '" ' . $attributes['attr']. ' >' : '';
|
||||||
$item .= '<span id="' . $attributes['id']. '" class="zwiico-' . $ico . ($attributes['margin'] ? ' zwiico-margin-' . $attributes['margin'] : '') . ($attributes['animate'] ? ' animate-spin' : '') . '" style="font-size:' . $attributes['fontSize'] . '"><!----></span>';
|
$item .= '<span id="' . $attributes['id']. '" class="zwiico-' . $ico . ($attributes['margin'] ? ' zwiico-margin-' . $attributes['margin'] : '') . ($attributes['animate'] ? ' animate-spin' : '') . '" style="font-size:' . $attributes['fontSize'] . '"><!----></span>';
|
||||||
$item .= ($attributes['href']) ? '</a>' : '';
|
$item .= ($attributes['href']) ? '</a>' : '';
|
||||||
@ -490,7 +507,9 @@ class template {
|
|||||||
'for' => $for,
|
'for' => $for,
|
||||||
'help' => ''
|
'help' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
// Ajout d'une aide
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$text = helper::translate($text);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
if($attributes['help'] !== '') {
|
if($attributes['help'] !== '') {
|
||||||
$text = $text . self::help($attributes['help']);
|
$text = $text . self::help($attributes['help']);
|
||||||
}
|
}
|
||||||
@ -526,6 +545,9 @@ class template {
|
|||||||
'readonly' => false,
|
'readonly' => false,
|
||||||
'value' => ''
|
'value' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['value'] = helper::translate($attributes['value']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
||||||
@ -588,6 +610,10 @@ class template {
|
|||||||
'placeholder' => '',
|
'placeholder' => '',
|
||||||
'readonly' => false
|
'readonly' => false
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
|
$attributes['placeholder'] = helper::translate($attributes['placeholder']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Début du wrapper
|
// Début du wrapper
|
||||||
$html = '<div id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
|
$html = '<div id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
|
||||||
// Label
|
// Label
|
||||||
@ -636,6 +662,9 @@ class template {
|
|||||||
'selected' => '',
|
'selected' => '',
|
||||||
'fonts' => []
|
'fonts' => []
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Stocker les fontes et remettre à zéro le tableau des fontes transmis pour éviter une erreur de sprintAttributes
|
// Stocker les fontes et remettre à zéro le tableau des fontes transmis pour éviter une erreur de sprintAttributes
|
||||||
if (empty($attributes['fonts']) === false) {
|
if (empty($attributes['fonts']) === false) {
|
||||||
$fonts = $attributes['fonts'];
|
$fonts = $attributes['fonts'];
|
||||||
@ -806,6 +835,9 @@ class template {
|
|||||||
'readonly' => false,
|
'readonly' => false,
|
||||||
'value' => ''
|
'value' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
||||||
@ -858,6 +890,9 @@ class template {
|
|||||||
'readonly' => false,
|
'readonly' => false,
|
||||||
'value' => ''
|
'value' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
|
// Traduction de l'aide et de l'étiquette
|
||||||
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
|
$attributes['help'] = helper::translate($attributes['help']);
|
||||||
// Sauvegarde des données en cas d'erreur
|
// Sauvegarde des données en cas d'erreur
|
||||||
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
|
||||||
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
$attributes['value'] = common::$inputBefore[$attributes['id']];
|
||||||
|
Loading…
Reference in New Issue
Block a user