Files
smarty/docs/en/designers/language-custom-functions/language-function-html-radios.xml

212 lines
5.7 KiB
XML
Raw Normal View History

2004-04-13 08:46:28 +00:00
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
2005-05-10 11:42:40 +00:00
<sect1 id="language.function.html.radios">
<title>{html_radios}</title>
2005-09-13 19:03:11 +00:00
<para>
{html_radios} is a
<link linkend="language.custom.functions">custom function</link>
that creates html radio button
group with provided data. It takes care of which item is selected
by default as well. Required attributes are values and output,
2006-03-13 23:13:38 +00:00
unless you use options instead. All output is XHTML compliant.
2005-09-13 19:03:11 +00:00
</para>
2005-05-10 11:42:40 +00:00
<informaltable frame="all">
<tgroup cols="5">
<colspec colname="param" align="center" />
<colspec colname="type" align="center" />
<colspec colname="required" align="center" />
<colspec colname="default" align="center" />
<colspec colname="desc" />
<thead>
<row>
<entry>Attribute Name</entry>
<entry>Type</entry>
<entry>Required</entry>
<entry>Default</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>name</entry>
<entry>string</entry>
<entry>No</entry>
<entry><emphasis>radio</emphasis></entry>
<entry>name of radio list</entry>
</row>
<row>
<entry>values</entry>
<entry>array</entry>
<entry>Yes, unless using options attribute</entry>
<entry><emphasis>n/a</emphasis></entry>
<entry>an array of values for radio buttons</entry>
</row>
<row>
<entry>output</entry>
<entry>array</entry>
<entry>Yes, unless using options attribute</entry>
<entry><emphasis>n/a</emphasis></entry>
<entry>an array of output for radio buttons</entry>
</row>
<row>
<entry>selected</entry>
<entry>string</entry>
<entry>No</entry>
<entry><emphasis>empty</emphasis></entry>
<entry>the selected radio element</entry>
</row>
<row>
<entry>options</entry>
<entry>associative array</entry>
<entry>Yes, unless using values and output</entry>
<entry><emphasis>n/a</emphasis></entry>
<entry>an associative array of values and output</entry>
</row>
<row>
<entry>separator</entry>
<entry>string</entry>
<entry>No</entry>
<entry><emphasis>empty</emphasis></entry>
<entry>string of text to separate each radio item</entry>
</row>
2006-05-12 15:31:16 +00:00
<row>
<entry>assign</entry>
<entry>string</entry>
<entry>No</entry>
<entry><emphasis>empty</emphasis></entry>
2006-05-12 15:36:09 +00:00
<entry>assign radio tags to an array instead of output</entry>
2006-05-12 15:31:16 +00:00
</row>
2005-05-10 11:42:40 +00:00
</tbody>
</tgroup>
</informaltable>
2005-09-13 19:03:11 +00:00
2005-05-10 11:42:40 +00:00
<para>
All parameters that are not in the list above are printed as
2005-05-10 15:09:49 +00:00
name/value-pairs inside each of the created &lt;input&gt;-tags.
2005-05-10 11:42:40 +00:00
</para>
2004-04-13 08:46:28 +00:00
2005-05-10 11:42:40 +00:00
<example>
2006-03-13 23:13:38 +00:00
<title>{html_radios} example 1</title>
<programlisting role="php">
2005-05-10 11:42:40 +00:00
<![CDATA[
<?php
2004-04-13 08:46:28 +00:00
2005-05-27 16:25:02 +00:00
$smarty->assign('cust_ids', array(1000,1001,1002,1003));
$smarty->assign('cust_names', array(
2005-05-27 16:25:02 +00:00
'Joe Schmoe',
'Jack Smith',
'Jane Johnson',
'Charlie Brown')
);
$smarty->assign('customer_id', 1001);
?>
2005-05-10 11:42:40 +00:00
]]>
</programlisting>
<para>
Where template is:
2005-05-10 11:42:40 +00:00
</para>
<programlisting>
<![CDATA[
2006-03-13 23:13:38 +00:00
{html_radios name='id' values=$cust_ids output=$cust_names
selected=$customer_id separator='<br />'}
2005-05-10 11:42:40 +00:00
]]>
</programlisting>
</example>
<example>
2006-03-13 23:13:38 +00:00
<title>{html_radios} example 2</title>
<programlisting role="php">
2005-05-10 11:42:40 +00:00
<![CDATA[
<?php
2005-05-27 16:25:02 +00:00
$smarty->assign('cust_radios', array(
1000 => 'Joe Schmoe',
1001 => 'Jack Smith',
1002 => 'Jane Johnson',
1003 => 'Charlie Brown'));
$smarty->assign('customer_id', 1001);
?>
2005-05-10 11:42:40 +00:00
]]>
</programlisting>
<para>
2005-12-23 11:19:18 +00:00
Where template is:
2005-05-10 11:42:40 +00:00
</para>
<programlisting>
<![CDATA[
2006-03-13 23:13:38 +00:00
{html_radios name='id' options=$cust_radios
selected=$customer_id separator='<br />'}
2005-05-10 11:42:40 +00:00
]]>
</programlisting>
<para>
Both examples will output:
</para>
<screen>
<![CDATA[
2005-05-27 16:25:02 +00:00
<label for="id_1000">
2005-12-13 23:07:40 +00:00
<input type="radio" name="id" value="1000" id="id_1000" />Joe Schmoe</label><br />
<label for="id_1001"><input type="radio" name="id" value="1001" id="id_1001" checked="checked" />Jack Smith</label><br />
<label for="id_1002"><input type="radio" name="id" value="1002" id="id_1002" />Jane Johnson</label><br />
<label for="id_1003"><input type="radio" name="id" value="1003" id="id_1003" />Charlie Brown</label><br />
2005-05-10 11:42:40 +00:00
]]>
</screen>
</example>
2005-12-13 23:07:40 +00:00
<example>
2006-03-13 23:13:38 +00:00
<title>{html_radios} - Database example (eg PEAR or ADODB):</title>
2005-12-13 23:07:40 +00:00
<programlisting role="php">
<![CDATA[
<?php
2006-03-13 23:21:00 +00:00
$sql = 'select type_id, types from contact_types order by type';
2006-03-13 23:31:02 +00:00
$smarty->assign('contact_types',$db->getAssoc($sql));
2006-03-13 23:21:00 +00:00
$sql = 'select contact_id, name, email, contact_type_id '
.'from contacts where contact_id='.$contact_id;
$smarty->assign('contact',$db->getRow($sql));
?>
]]>
2005-12-13 23:07:40 +00:00
</programlisting>
<para>
and the template:
</para>
<programlisting>
<![CDATA[
2006-03-13 23:21:00 +00:00
{html_radios name='contact_type_id' options=$contact_types
2006-03-13 23:13:38 +00:00
selected=$contact.contact_type_id separator='<br />'}
]]>
2005-12-13 23:07:40 +00:00
</programlisting>
</example>
2005-12-13 23:07:40 +00:00
<para>
See also <link
linkend="language.function.html.checkboxes">{html_checkboxes}</link>
and <link
linkend="language.function.html.options">{html_options}</link>
</para>
2004-04-13 08:46:28 +00:00
</sect1>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
2004-07-23 18:34:21 +00:00
-->