template select
This commit is contained in:
parent
b23b1f2e06
commit
3cda662220
@ -686,7 +686,8 @@ class template
|
|||||||
'label' => '',
|
'label' => '',
|
||||||
'name' => $nameId,
|
'name' => $nameId,
|
||||||
'selected' => '',
|
'selected' => '',
|
||||||
'font' => []
|
'font' => [],
|
||||||
|
'multiple' => ''
|
||||||
], $attributes);
|
], $attributes);
|
||||||
// Traduction de l'aide et de l'étiquette
|
// Traduction de l'aide et de l'étiquette
|
||||||
$attributes['label'] = helper::translate($attributes['label']);
|
$attributes['label'] = helper::translate($attributes['label']);
|
||||||
@ -715,6 +716,11 @@ class template
|
|||||||
$attributes['class'] .= ' notice';
|
$attributes['class'] .= ' notice';
|
||||||
}
|
}
|
||||||
$html .= self::notice($attributes['id'], $notice);
|
$html .= self::notice($attributes['id'], $notice);
|
||||||
|
// Attribut multiple
|
||||||
|
if ($attributes['multiple'] === true) {
|
||||||
|
echo "ppp";
|
||||||
|
$attributes['multiple'] = 'multiple';
|
||||||
|
}
|
||||||
// Début sélection
|
// Début sélection
|
||||||
$html .= sprintf(
|
$html .= sprintf(
|
||||||
'<select %s>',
|
'<select %s>',
|
||||||
@ -744,6 +750,7 @@ class template
|
|||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Crée une bulle de dialogue
|
* Crée une bulle de dialogue
|
||||||
* @param string $text Texte de la bulle
|
* @param string $text Texte de la bulle
|
||||||
|
Loading…
Reference in New Issue
Block a user