mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
- LSformElement_boolean : Refonte en utilisant les templates
This commit is contained in:
parent
1293b9776a
commit
fae498c014
3 changed files with 22 additions and 67 deletions
|
@ -32,6 +32,9 @@
|
||||||
|
|
||||||
class LSformElement_boolean extends LSformElement {
|
class LSformElement_boolean extends LSformElement {
|
||||||
|
|
||||||
|
var $fieldTemplate = 'LSformElement_boolean_field.tpl';
|
||||||
|
var $template = 'LSformElement_boolean.tpl';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourne les infos d'affichage de l'élément
|
* Retourne les infos d'affichage de l'élément
|
||||||
*
|
*
|
||||||
|
@ -41,79 +44,19 @@ class LSformElement_boolean extends LSformElement {
|
||||||
*/
|
*/
|
||||||
function getDisplay(){
|
function getDisplay(){
|
||||||
$return = $this -> getLabelInfos();
|
$return = $this -> getLabelInfos();
|
||||||
// value
|
|
||||||
if (!$this -> isFreeze()) {
|
if (!$this -> isFreeze()) {
|
||||||
$return['html'] = "<ul class='LSform'>\n";
|
|
||||||
if (empty($this -> values)) {
|
|
||||||
$return['html'] .= "<li class='LSformElement_boolean'>".$this -> getEmptyField()."</li>\n";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
foreach ($this -> values as $value) {
|
|
||||||
$return['html'] .= "<li class='LSformElement_boolean'><input type='radio' value='yes' name='".$this -> name."[0]' ".(($this -> isTrue($this -> values))?'checked':'')." /> "._('Oui')."<input type='radio' value='no' name='".$this -> name."[0]' ".(($this -> isFalse($this -> values))?'checked':'')." /> "._('Non')."</li>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$return['html'] .= "</ul>\n";
|
|
||||||
$GLOBALS['LSsession'] -> addJSscript('LSformElement_boolean.js');
|
$GLOBALS['LSsession'] -> addJSscript('LSformElement_boolean.js');
|
||||||
}
|
}
|
||||||
else {
|
$return['html'] = $this -> fetchTemplate(
|
||||||
$return['html'] = "<ul class='LSform LSformElement_text'>\n";
|
NULL,
|
||||||
if (empty($this -> values)) {
|
array(
|
||||||
$return['html'] .= "<li>"._('Aucune valeur definie')."</li>\n";
|
'yesTxt' => _('Oui'),
|
||||||
}
|
'noTxt' => _('Non')
|
||||||
else {
|
)
|
||||||
$return['html'] .= "<li>".(($this -> isTrue($this -> values))?_('Oui'):_('Non'))."</li>\n";
|
);
|
||||||
}
|
|
||||||
$return['html'] .= "</ul>\n";
|
|
||||||
}
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Retourne le code HTML d'un champ vide
|
|
||||||
*
|
|
||||||
* @retval string Code HTML d'un champ vide.
|
|
||||||
*/
|
|
||||||
function getEmptyField() {
|
|
||||||
return "<input type='radio' value='yes' name='".$this -> name."[0]' /> "._('Oui')."<input type='radio' value='no' name='".$this -> name."[0]' /> "._('Non');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine si la valeur passé en paramètre correspond a True ou non
|
|
||||||
*
|
|
||||||
* - true = si $data[] contient un champ à 1
|
|
||||||
* - false = sinon
|
|
||||||
*
|
|
||||||
* @param[in] $data La valeur de l'attribut
|
|
||||||
*
|
|
||||||
* @retval boolean True ou False
|
|
||||||
*/
|
|
||||||
function isTrue($data) {
|
|
||||||
if(!is_array($data)) {
|
|
||||||
$data=array($data);
|
|
||||||
}
|
|
||||||
if($data[0]=='yes') {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine si la valeur passé en paramètre correspond a False ou non
|
|
||||||
*
|
|
||||||
* @param[in] $data La valeur de l'attribut
|
|
||||||
*
|
|
||||||
* @retval boolean True ou False
|
|
||||||
*/
|
|
||||||
function isFalse($data) {
|
|
||||||
if(!is_array($data)) {
|
|
||||||
$data=array($data);
|
|
||||||
}
|
|
||||||
if($data[0]=='no') {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
7
trunk/templates/default/LSformElement_boolean.tpl
Normal file
7
trunk/templates/default/LSformElement_boolean.tpl
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<ul class='LSform' id='{$attr_name}'>
|
||||||
|
{foreach from=$values item=value}
|
||||||
|
<li{if !$freeze} class='LSformElement_boolean'{/if}>{include file=$fieldTemplate}</li>
|
||||||
|
{foreachelse}
|
||||||
|
<li{if !$freeze} class='LSformElement_boolean'{/if}>{include file=$fieldTemplate}</li>
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
5
trunk/templates/default/LSformElement_boolean_field.tpl
Normal file
5
trunk/templates/default/LSformElement_boolean_field.tpl
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{if $freeze}
|
||||||
|
{if $value=='yes'}{$yesTxt}{elseif $value=='no'}{$noTxt}{else}{$noValueTxt}{/if}
|
||||||
|
{else}
|
||||||
|
<input type='radio' value='yes' name='{$attr_name}[0]' {if $value=='yes'}checked{/if} />{$yesTxt} <input type='radio' value='no' name='{$attr_name}[0]' {if $value=='no'}checked{/if} /> {$noTxt}
|
||||||
|
{/if}
|
Loading…
Reference in a new issue