LSattr_html :: jsonCompositeAttribute : Add help_info and multiple parameters on components

This commit is contained in:
Benjamin Renard 2018-04-26 11:23:00 +02:00
parent 5335ca477c
commit 9cb3bb8e18
14 changed files with 406 additions and 76 deletions

View file

@ -19,8 +19,10 @@
'components' => array ( 'components' => array (
'[clé composant 1]' => array ( '[clé composant 1]' => array (
'label' => '[Label du composant]', 'label' => '[Label du composant]',
'help_info' => '[Message d'aide sur le composant]',
'type' => '[Type de la valeur stocké]', 'type' => '[Type de la valeur stocké]',
'required' => [Booléen], 'required' => [Booléen],
'multiple' => [Booléen],
'check_data' => => array ( 'check_data' => => array (
// Régle de vérification syntaxique des données saisies // Régle de vérification syntaxique des données saisies
), ),
@ -57,6 +59,14 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term>help_info</term>
<listitem>
<simpara>Message d'aide sur le composant (affiché uniquement en mode édition).
</simpara>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term>type</term> <term>type</term>
<listitem> <listitem>
@ -77,6 +87,22 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term>multiple</term>
<listitem>
<simpara>Booléen définissant si ce composant peut stocker plusieurs valeurs (Défaut :
<emphasis>Faux</emphasis>).</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>required</term>
<listitem>
<simpara>Booléen définissant si ce composant doit obligatoirement être défini (Défaut :
<emphasis>Faux</emphasis>).</simpara>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term>check_data</term> <term>check_data</term>
<listitem> <listitem>

View file

@ -7,12 +7,29 @@ ul.LSformElement_jsonCompositeAttribute li.noValue {
border: none; border: none;
} }
ul.LSformElement_jsonCompositeAttribute p { ul.LSformElement_jsonCompositeAttribute div {
margin: 0;
margin-bottom: 2px;
}
ul.LSformElement_jsonCompositeAttribute div label {
display: inline-block;
height: 100%;
vertical-align: top;
width: 10em;
font-weight: bold;
}
ul.LSformElement_jsonCompositeAttribute div ul {
display: inline-block;
list-style-type: none;
padding: 0;
margin: 0; margin: 0;
} }
ul.LSformElement_jsonCompositeAttribute p label { ul.LSformElement_jsonCompositeAttribute div ul li {
font-weight: bold; margin-bottom: 2px;
border: none;
} }
div.jsonCompositeAttribute_possibleValues ul { div.jsonCompositeAttribute_possibleValues ul {

View file

@ -100,6 +100,20 @@ class LSformElement_jsonCompositeAttribute extends LSformElement {
) )
); );
LSsession :: addCssFile('LSformElement_jsonCompositeAttribute.css'); LSsession :: addCssFile('LSformElement_jsonCompositeAttribute.css');
if (!$this -> isFreeze()) {
LSsession :: addJSconfigParam(
$this -> name,
array (
'components' => $this -> components,
)
);
LSsession :: addJSscript('LSformElement_jsonCompositeAttribute_field_value_component_text_value.js');
LSsession :: addJSscript('LSformElement_jsonCompositeAttribute_field_value_component.js');
LSsession :: addJSscript('LSformElement_jsonCompositeAttribute_field_value.js');
LSsession :: addJSscript('LSformElement_jsonCompositeAttribute_field.js');
LSsession :: addJSscript('LSformElement_jsonCompositeAttribute.js');
}
return $return; return $return;
} }
@ -132,19 +146,29 @@ class LSformElement_jsonCompositeAttribute extends LSformElement {
* *
* @param[in] $c string The component name * @param[in] $c string The component name
* @param[in] $value string The value * @param[in] $value string The value
* @param[in] $inLoop boolean Internal param to control recursion
* *
* @retval array * @retval array
**/ **/
function translateComponentValue($c,$value) { function translateComponentValue($c,$value,$inLoop=false) {
$retval = array ( if (!$inLoop && isset($this -> components[$c]['multiple']) && $this -> components[$c]['multiple']) {
'translated' => $value, $retval = array();
'value' => $value, if (!is_array($value))
); $value = array($value);
if (isset($this -> components[$c])) { foreach($value as $val)
if ($this -> components[$c]['type']=='select_list') { $retval[] = $this -> translateComponentValue($c, $val, true);
$retval['translated'] = $this -> getSelectListComponentValueLabel($c,$value); }
else {
$retval = array (
'translated' => $value,
'value' => $value,
);
if (isset($this -> components[$c])) {
if ($this -> components[$c]['type']=='select_list') {
$retval['translated'] = $this -> getSelectListComponentValueLabel($c,$value);
}
//elseif type == 'text' => no transformation
} }
//elseif type == 'text' => no transformation
} }
return $retval; return $retval;
} }
@ -202,66 +226,73 @@ class LSformElement_jsonCompositeAttribute extends LSformElement {
return true; return true;
} }
$count=0;
$end=false;
$return[$this -> name]=array(); $return[$this -> name]=array();
while ($end==false) { if (is_array($_POST[$this -> name.'__values_uuid'])) {
$value=array(); foreach ($_POST[$this -> name.'__values_uuid'] as $uuid) {
$parseValue=array(); $value=array();
$errors=array(); $parseValue=array();
$unemptyComponents=array(); $errors=array();
foreach ($this -> components as $c => $cconf) { $unemptyComponents=array();
if (isset($_POST[$this -> name.'__'.$c][$count])) {
$parseValue[$c]=$_POST[$this -> name.'__'.$c][$count]; foreach ($this -> components as $c => $cconf) {
if ($cconf['required'] && empty($parseValue[$c])) { if (isset($_POST[$this -> name.'__'.$c.'__'.$uuid])) {
$errors[]=getFData(__('Component %{c} must be defined'),__($cconf['label'])); if (!is_array($_POST[$this -> name.'__'.$c.'__'.$uuid]))
continue; $_POST[$this -> name.'__'.$c.'__'.$uuid] = array($_POST[$this -> name.'__'.$c.'__'.$uuid]);
}
if (empty($parseValue[$c])) { $parseValue[$c]=array();
continue; foreach($_POST[$this -> name.'__'.$c.'__'.$uuid] as $val) {
} if (empty($val))
$unemptyComponents[]=$c; continue;
if ($cconf['type']=='select_list') { $parseValue[$c][] = $val;
if (!$this -> getSelectListComponentValueLabel($c, $parseValue[$c])) { if ($cconf['type']=='select_list') {
$errors[]=getFData(__('Invalid value for component %{c}.'),__($cconf['label'])); if (!$this -> getSelectListComponentValueLabel($c, $val)) {
} $errors[]=getFData(_('Invalid value "%{value}" for component %{component}.'),array('value' => $val, 'component' => __($cconf['label'])));
} }
if (is_array($cconf['check_data'])) { }
foreach($cconf['check_data'] as $ruleType => $rconf) { if (is_array($cconf['check_data'])) {
$className='LSformRule_'.$ruleType; foreach($cconf['check_data'] as $ruleType => $rconf) {
if (LSsession::loadLSclass($className)) { $className='LSformRule_'.$ruleType;
$r=new $className(); if (LSsession::loadLSclass($className)) {
if (!$r -> validate($parseValue[$c],$rconf,$this)) { $r=new $className();
if (isset($rconf['msg'])) { if (!$r -> validate($val,$rconf,$this)) {
$errors[]=getFData(__($rconf['msg']),__($cconf['label'])); if (isset($rconf['msg'])) {
$errors[]=getFData(__($rconf['msg']),__($cconf['label']));
}
else {
$errors[]=getFData(_('Invalid value "%{value}" for component %{component}.'),array('value' => $val, 'component' => __($cconf['label'])));
}
}
} }
else { else {
$errors[]=getFData(__('Invalid value for component %{c}.'),__($cconf['label'])); $errors[]=getFData(_("Can't validate value of component %{c}."),__($cconf['label']));
} }
} }
} }
else {
$errors[]=getFData(__("Can't validate value of component %{c}."),__($cconf['label']));
}
} }
if (!isset($cconf['multiple']) || !$cconf['multiple']) {
if (count($parseValue[$c])>=1)
$parseValue[$c] = $parseValue[$c][0];
else
$parseValue[$c] = '';
}
if ($cconf['required'] && empty($parseValue[$c])) {
$errors[]=getFData(_('Component %{c} must be defined'),__($cconf['label']));
continue;
}
$unemptyComponents[]=$c;
$value[$c]=$parseValue[$c];
} }
$value[$c]=$parseValue[$c];
}
else {
// end of value break
$end=true;
break;
} }
}
if (!$end) {
if (!empty($unemptyComponents)) { if (!empty($unemptyComponents)) {
foreach($errors as $e) { foreach($errors as $e) {
$this -> form -> setElementError($this -> attr_html,$e); $this -> form -> setElementError($this -> attr_html,$e);
} }
$return[$this -> name][]=json_encode($value); $return[$this -> name][]=json_encode($value);
} }
$count++;
} }
} }
return true; return true;

View file

@ -122,6 +122,7 @@ class LStemplate {
self :: registerFunction("tr", "LStemplate_smarty_tr"); self :: registerFunction("tr", "LStemplate_smarty_tr");
self :: registerFunction("img", "LStemplate_smarty_img"); self :: registerFunction("img", "LStemplate_smarty_img");
self :: registerFunction("css", "LStemplate_smarty_css"); self :: registerFunction("css", "LStemplate_smarty_css");
self :: registerFunction("uniqid", "LStemplate_smarty_uniqid");
return True; return True;
} }
@ -297,6 +298,12 @@ function LStemplate_smarty_css($params) {
echo LStemplate :: getCSSPath($name); echo LStemplate :: getCSSPath($name);
} }
function LStemplate_smarty_uniqid($params, &$smarty) {
if (!isset($params['var']))
$params['var'] = 'uniqid';
$smarty -> assign($params['var'], uniqid());
}
// Errors // Errors
LSerror :: defineError('LStemplate_01', LSerror :: defineError('LStemplate_01',
_("LStemplate : Template %{file} not found.") _("LStemplate : Template %{file} not found.")

View file

@ -0,0 +1,18 @@
var LSformElement_jsonCompositeAttribute = new Class({
initialize: function(){
this.fields = [];
this.initialiseLSformElement_jsonCompositeAttribute();
},
initialiseLSformElement_jsonCompositeAttribute: function(el) {
if (!$type(el)) {
el = document;
}
el.getElements('ul.LSformElement_jsonCompositeAttribute').each(function(ul) {
this.fields[ul.id] = new LSformElement_jsonCompositeAttribute_field(ul);
}, this);
}
});
window.addEvent(window.ie ? 'load' : 'domready', function() {
varLSformElement_jsonCompositeAttribute = new LSformElement_jsonCompositeAttribute();
});

View file

@ -0,0 +1,32 @@
var LSformElement_jsonCompositeAttribute_field = new Class({
initialize: function(ul){
this.ul=ul;
this.dd=ul.getParent();
this.name = ul.id;
this.values = [];
this.field_type = ul.get('data-fieldType');
this.initializeLSformElement_jsonCompositeAttribute_field();
varLSform.addField(this.name,this);
},
initializeLSformElement_jsonCompositeAttribute_field: function(el) {
if (!$type(el)) {
el = this.ul;
}
el.getChildren('li').each(function(li) {
this.values.push(new LSformElement_jsonCompositeAttribute_field_value(li,this.name,this.field_type));
}, this);
},
clearValue: function() {
if (this.values.length>1) {
for(var i=1; i<=this.values.length; i++) {
$(this.values[i].li).dispose();
}
this.values[0].clear();
}
else if (this.values.length==1) {
this.values[0].clear();
}
}
});

View file

@ -0,0 +1,31 @@
var LSformElement_jsonCompositeAttribute_field_value = new Class({
initialize: function(li,name,field_type){
this.li=li;
this.name = name;
this.input_uuid = li.getElement('input[name='+name+'__values_uuid[]]');
this.uuid = this.input_uuid.get('value');
this.components = {};
this.field_type = field_type;
this.initializeLSformElement_jsonCompositeAttribute_field_value();
varLSform.addModule(field_type,this);
},
initializeLSformElement_jsonCompositeAttribute_field_value: function(el) {
if (!$type(el)) {
el = this.li;
}
el.getElements('div').each(function(div) {
this.components[div.get('data-component')]=new LSformElement_jsonCompositeAttribute_field_value_component(div,div.get('data-component'),this.name,this.uuid);
}, this);
},
reinitialize: function(el) {
this.initializeLSformElement_jsonCompositeAttribute_field_value(el);
},
clear: function() {
for (c in this.components) {
this.components[c].clear();
}
}
});

View file

@ -0,0 +1,62 @@
var LSformElement_jsonCompositeAttribute_field_value_component = new Class({
initialize: function(div,name,field_name,field_uuid){
this.div = div;
this.field_name = field_name;
this.field_uuid = field_uuid;
this.field_params = varLSdefault.LSjsConfig[this.field_name];
this.name = name;
this.params = this.field_params['components'][this.name];
this.label = div.getElement('label');
if (this.params.type == 'select_list') {
this.select = div.getElement('select');
}
else {
// Type text
this.ul = div.getElement('ul');
this.lis = {};
this.values = {};
this.ul.getElements('li').each(function(li) {
this.initTextComponentValue(li);
}, this);
}
},
initTextComponentValue: function(li) {
var uuid = generate_uuid();
this.lis[uuid] = li;
this.values[uuid] = new LSformElement_jsonCompositeAttribute_field_value_component_text_value(this,li);
},
onAddTextValueBtnClick: function(after) {
var li = new Element('li');
var input = new Element('input');
input.type='text';
input.name=this.field_name+'__'+this.name+'__'+this.field_uuid+'[]';
input.injectInside(li);
li.injectAfter(after.li);
this.initTextComponentValue(li);
},
onRemoveTextValueBtnClick: function(value) {
if (this.ul.getElements('li').length == 1) {
value.clear.bind(value)();
}
else {
value.remove.bind(value)();
}
},
clear: function() {
if (this.params.type == 'select_list') {
this.select.selectedIndex=-1;
}
else {
this.values.each(function(value) {
value.clear();
}, this);
}
}
});

View file

@ -0,0 +1,30 @@
var LSformElement_jsonCompositeAttribute_field_value_component_text_value = new Class({
initialize: function(component,li) {
this.component = component;
this.li = li;
this.input = li.getElement('input');
if (this.component.params.multiple) {
this.addValueBtn = new Element('img');
this.addValueBtn.src = varLSdefault.imagePath('add');
this.addValueBtn.addClass('btn');
this.addValueBtn.addEvent('click',this.component.onAddTextValueBtnClick.bind(this.component,this));
this.addValueBtn.injectInside(this.li);
this.removeValueBtn = new Element('img');
this.removeValueBtn.src = varLSdefault.imagePath('remove');
this.removeValueBtn.addClass('btn');
this.removeValueBtn.addEvent('click',this.component.onRemoveTextValueBtnClick.bind(this.component,this));
this.removeValueBtn.injectInside(this.li);
}
},
clear: function() {
this.input.value = '';
},
remove: function() {
this.li.destroy();
}
});

View file

@ -245,6 +245,18 @@ function urlAddVar(url,name,value) {
return url; return url;
} }
/*
* Generate UUID
*/
function generate_uuid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
}
/* /*
* Base64 compatibility * Base64 compatibility
* *

View file

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: LdapSaisie\n" "Project-Id-Version: LdapSaisie\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-08 18:12+0100\n" "POT-Creation-Date: 2018-04-26 11:34+0200\n"
"PO-Revision-Date: 2018-02-08 18:13+0100\n" "PO-Revision-Date: 2018-04-26 11:35+0200\n"
"Last-Translator: Benjamin Renard <brenard@zionetrix.net>\n" "Last-Translator: Benjamin Renard <brenard@zionetrix.net>\n"
"Language-Team: LdapSaisie <ldapsaisie-users@lists.labs.libre-entreprise." "Language-Team: LdapSaisie <ldapsaisie-users@lists.labs.libre-entreprise."
"org>\n" "org>\n"
@ -435,7 +435,7 @@ msgstr "Affichier la clé en entier."
msgid "Unknown type" msgid "Unknown type"
msgstr "Type inconnu" msgstr "Type inconnu"
#: includes/class/class.LSformElement_valueWithUnit.php:190 #: includes/class/class.LSformElement_valueWithUnit.php:200
msgid "" msgid ""
"LSformElement_valueWithUnit : Units configuration data are missing for the " "LSformElement_valueWithUnit : Units configuration data are missing for the "
"attribute %{attr}." "attribute %{attr}."
@ -490,12 +490,12 @@ msgstr "LStemplate : Impossible de charger le fichier de support de Smarty 3."
msgid "LStemplate : Smarty version not recognized." msgid "LStemplate : Smarty version not recognized."
msgstr "LStemplate : Version de Smarty non reconnue." msgstr "LStemplate : Version de Smarty non reconnue."
#: includes/class/class.LStemplate.php:129 #: includes/class/class.LStemplate.php:130
msgid "LStemplate : Can't load Smarty." msgid "LStemplate : Can't load Smarty."
msgstr "" msgstr ""
"LStemplate : Impossible de charger le moteur de gestion de template Smarty." "LStemplate : Impossible de charger le moteur de gestion de template Smarty."
#: includes/class/class.LStemplate.php:302 #: includes/class/class.LStemplate.php:309
msgid "LStemplate : Template %{file} not found." msgid "LStemplate : Template %{file} not found."
msgstr "LStemplate : le template %{file} est introuvable." msgstr "LStemplate : le template %{file} est introuvable."
@ -1625,6 +1625,19 @@ msgstr ""
"LSformRule_inarray : Les valeurs possibles n'ont pas été configurées pour " "LSformRule_inarray : Les valeurs possibles n'ont pas été configurées pour "
"valider les données." "valider les données."
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:249
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:262
msgid "Invalid value \"%{value}\" for component %{component}."
msgstr "Valeur invalide pour le composant %{component} : \"%{value}\""
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:267
msgid "Can't validate value of component %{c}."
msgstr "Impossible de valider la valeur du composant %{c}."
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:281
msgid "Component %{c} must be defined"
msgstr "Le composant %{c} est obligatoire."
#: includes/class/class.LSformRule_date.php:59 #: includes/class/class.LSformRule_date.php:59
msgid "LSformRule_date : No date format specify." msgid "LSformRule_date : No date format specify."
msgstr "LSformRule_date : Aucun format de date spécifié." msgstr "LSformRule_date : Aucun format de date spécifié."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-08 18:12+0100\n" "POT-Creation-Date: 2018-04-26 11:33+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -388,7 +388,7 @@ msgstr ""
msgid "Unknown type" msgid "Unknown type"
msgstr "" msgstr ""
#: includes/class/class.LSformElement_valueWithUnit.php:190 #: includes/class/class.LSformElement_valueWithUnit.php:200
msgid "" msgid ""
"LSformElement_valueWithUnit : Units configuration data are missing for the " "LSformElement_valueWithUnit : Units configuration data are missing for the "
"attribute %{attr}." "attribute %{attr}."
@ -435,11 +435,11 @@ msgstr ""
msgid "LStemplate : Smarty version not recognized." msgid "LStemplate : Smarty version not recognized."
msgstr "" msgstr ""
#: includes/class/class.LStemplate.php:129 #: includes/class/class.LStemplate.php:130
msgid "LStemplate : Can't load Smarty." msgid "LStemplate : Can't load Smarty."
msgstr "" msgstr ""
#: includes/class/class.LStemplate.php:302 #: includes/class/class.LStemplate.php:309
msgid "LStemplate : Template %{file} not found." msgid "LStemplate : Template %{file} not found."
msgstr "" msgstr ""
@ -1397,6 +1397,19 @@ msgid ""
"data." "data."
msgstr "" msgstr ""
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:249
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:262
msgid "Invalid value \"%{value}\" for component %{component}."
msgstr ""
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:267
msgid "Can't validate value of component %{c}."
msgstr ""
#: includes/class/class.LSformElement_jsonCompositeAttribute.php:281
msgid "Component %{c} must be defined"
msgstr ""
#: includes/class/class.LSformRule_date.php:59 #: includes/class/class.LSformRule_date.php:59
msgid "LSformRule_date : No date format specify." msgid "LSformRule_date : No date format specify."
msgstr "" msgstr ""

View file

@ -2,35 +2,73 @@
{if isset($parseValue)} {if isset($parseValue)}
{foreach $components as $c => $cconf} {foreach $components as $c => $cconf}
{if !isset($parseValue[$c])}{continue}{/if} {if !isset($parseValue[$c])}{continue}{/if}
<p> <div>
<label>{tr msg=$cconf.label} : </label> <label>{tr msg=$cconf.label} : </label>
<span title="{$parseValue[$c].value}">{$parseValue[$c].translated}</span> <ul>
</p> {if $cconf.multiple && is_array($parseValue[$c])}
{foreach from=$parseValue[$c] item=$cval}
<li><span title="{$cval.value}">{$cval.translated}</span></li>
{/foreach}
{else}
<li><span title="{$parseValue[$c].value}">{$parseValue[$c].translated}</span></li>
{/if}
</ul>
</div>
{/foreach} {/foreach}
{else} {else}
{$noValueTxt} {$noValueTxt}
{/if} {/if}
{else} {else}
{foreach $components as $c => $cconf} {uniqid var="uuid"}
<p data-component="{$c}"> <input type='hidden' name="{$attr_name}__values_uuid[]" value="{$uuid}" />
<label>{tr msg=$cconf.label}{if $cconf.required}*{/if} :</label> {foreach from=$components key=$c item=$cconf name=components}
<div data-component="{$c}" data-uuid="{$uuid}">
<label>
{tr msg=$cconf.label}{if $cconf.required}*{/if}
{if $cconf.help_info}<img class='LStips' src="{img name='help'}" alt='?' title="{$cconf.help_info}"/>{/if}
:
</label>
{if $cconf.type=='select_list'} {if $cconf.type=='select_list'}
<select name='{$attr_name}__{$c}[]'> <select name='{$attr_name}__{$c}__{$uuid}[]' {if $cconf.multiple}multiple{/if}>
{foreach from=$cconf.possible_values key=key item=label} {foreach from=$cconf.possible_values key=key item=label}
{if is_array($label)} {if is_array($label)}
{if count($label.possible_values)>0} {if count($label.possible_values)>0}
<optgroup label="{$label.label}"> <optgroup label="{$label.label}">
{html_options options=$label.possible_values selected=$parseValue[$c].value} {if $cconf.multiple && is_array($parseValue[$c])}
{html_options options=$label.possible_values selected=$parseValue[$c]}
{else}
{html_options options=$label.possible_values selected=$parseValue[$c].value}
{/if}
</optgroup> </optgroup>
{/if} {/if}
{else} {else}
<option value="{$key}" {if $key == $parseValue[$c].value}selected{/if}>{$label}</option> {assign var="selected" value=0}
{if $cconf.multiple && is_array($parseValue[$c])}
{foreach from=$parseValue[$c] item=cval}
{if $key==$cval.value}{assign var="selected" value=1}{/if}
{/foreach}
{else}
{if $key == $parseValue[$c].value}
{assign var="selected" value=1}
{/if}
{/if}
<option value="{$key}" {if $selected == 1}selected{/if}>{$label}</option>
{/if} {/if}
{/foreach} {/foreach}
</select> </select>
{else} {else}
<input type='text' name='{$attr_name}__{$c}[]' value="{if $parseValue and $parseValue[$c]}{$parseValue[$c].value}{/if}"/> <ul>
{if $cconf.multiple && is_array($parseValue[$c])}
{foreach from=$parseValue[$c] item=$cval}
<li><input type='text' name='{$attr_name}__{$c}__{$uuid}[]' value='{$cval.value|escape:"quotes"}'/></li>
{foreachelse}
<li><input type='text' name='{$attr_name}__{$c}__{$uuid}[]' value=''/></li>
{/foreach}
{else}
<li><input type='text' name='{$attr_name}__{$c}__{$uuid}[]' value='{if $parseValue and $parseValue[$c]}{$parseValue[$c].value|escape:"quotes"}{/if}'/></li>
{/if}
</ul>
{/if} {/if}
</p> </div>
{/foreach} {/foreach}
{/if} {/if}