/*
- * Copyright (C) 2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2017-2020 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
}
}
-static gchar
-*zak_form_cgi_form_element_radio_render (ZakFormCgiFormElement *element)
+gchar
+*zak_form_cgi_form_element_radio_render_single (ZakFormCgiFormElement *element, guint idx)
{
gchar *ret_value;
GString *ret;
gchar *element_value;
- guint new_id;
-
ZakFormCgiFormElementClass *klass;
ZakFormCgiFormElementRadioPrivate *priv = ZAK_FORM_CGI_FORM_ELEMENT_RADIO_GET_PRIVATE (element);
element_value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
- new_id = 0;
-
attr_class = g_hash_table_lookup (ht_attrs, "class");
if (attr_class != NULL)
{
g_free (attr_class);
}
- for (i = 0; i < priv->ar_options->len; i++)
+ Option *opt = (Option *)g_ptr_array_index (priv->ar_options, idx);
+
+ ht_attrs_option = g_hash_table_new (g_str_hash, g_str_equal);
+ zak_utils_ghashtable_copy (ht_attrs, ht_attrs_option);
+
+ g_hash_table_insert (ht_attrs_option, (gpointer)"value", (gpointer)g_strdup (opt->value));
+
+ if (element_value != NULL
+ && g_strcmp0 (element_value, opt->value) == 0)
{
- Option *opt = (Option *)g_ptr_array_index (priv->ar_options, i);
+ g_hash_table_insert (ht_attrs_option, (gpointer)"checked", (gpointer)"checked");
+ }
- ht_attrs_option = g_hash_table_new (g_str_hash, g_str_equal);
- zak_utils_ghashtable_copy (ht_attrs, ht_attrs_option);
+ g_string_append_printf (ret, "\n%s<label%s>\n%s %s</label>%s",
+ priv->in_line ? "" : "<div class=\"radio\">\n",
+ priv->in_line ? " class=\"radio-inline\"" : "",
+ zak_cgi_tag_tag_ht ("input",
+ g_strdup_printf ("%s_%d",
+ zak_form_cgi_form_element_get_id (element),
+ idx + 1),
+ ht_attrs_option),
+ opt->content,
+ priv->in_line ? "" : "\n</div>");
- g_hash_table_insert (ht_attrs_option, (gpointer)"value", (gpointer)g_strdup (opt->value));
+ g_hash_table_unref (ht_attrs_option);
- if (element_value != NULL
- && g_strcmp0 (element_value, opt->value) == 0)
- {
- g_hash_table_insert (ht_attrs_option, (gpointer)"checked", (gpointer)"checked");
- }
+ ret_value = g_strdup (ret->str);
+ g_string_free (ret, TRUE);
- g_string_append_printf (ret, "\n%s<label%s>\n%s %s</label>%s",
- priv->in_line ? "" : "<div class=\"radio\">\n",
- priv->in_line ? " class=\"radio-inline\"" : "",
- zak_cgi_tag_tag_ht ("input",
- g_strdup_printf ("%s_%d",
- zak_form_cgi_form_element_get_id (element),
- ++new_id),
- ht_attrs_option),
- opt->content,
- priv->in_line ? "" : "\n</div>");
-
- g_hash_table_unref (ht_attrs_option);
+ return ret_value;
+}
+
+static gchar
+*zak_form_cgi_form_element_radio_render (ZakFormCgiFormElement *element)
+{
+ gchar *ret_value;
+ GString *ret;
+
+ guint i;
+
+ ZakFormCgiFormElementRadioPrivate *priv = ZAK_FORM_CGI_FORM_ELEMENT_RADIO_GET_PRIVATE (element);
+
+ ret = g_string_new ("");
+
+ for (i = 0; i < priv->ar_options->len; i++)
+ {
+ g_string_append_printf (ret,
+ zak_form_cgi_form_element_radio_render_single (element, i));
}
ret_value = g_strdup (ret->str);