Files
smarty/docs/it/designers/language-custom-functions/language-function-html-table.xml

153 lines
6.0 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision$ -->
<sect1 id="language.function.html.table">
<title>html_table</title>
<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>Nome Attributo</entry>
<entry>Tipo</entry>
<entry>Obbligatorio</entry>
<entry>Default</entry>
<entry>Descrizione</entry>
</row>
</thead>
<tbody>
<row>
<entry>loop</entry>
<entry>array</entry>
<entry></entry>
<entry><emphasis>nessuno</emphasis></entry>
<entry>array di dati da visualizzare nella tabella</entry>
</row>
<row>
<entry>cols</entry>
<entry>intero</entry>
<entry>no</entry>
<entry><emphasis>3</emphasis></entry>
<entry>numero di colonne della tabella</entry>
</row>
<row>
<entry>table_attr</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>border="1"</emphasis></entry>
<entry>attributi per il tag table</entry>
</row>
<row>
<entry>tr_attr</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>vuoto</emphasis></entry>
<entry>attributi per i tag tr (gli array vengono alternati)</entry>
</row>
<row>
<entry>td_attr</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>vuoto</emphasis></entry>
<entry>attributi per i tag td (gli array vengono alternati)</entry>
</row>
<row>
<entry>trailpad</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>&amp;nbsp;</emphasis></entry>
<entry>valore per le celle aggiuntive dell'ultima riga,
se presenti</entry>
</row>
<row>
<entry>hdir</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>right</emphasis></entry>
<entry>direzione di riempimento delle righe. Valori possibili: <emphasis>left</emphasis>/<emphasis>right</emphasis></entry>
</row>
<row>
<entry>vdir</entry>
<entry>stringa</entry>
<entry>no</entry>
<entry><emphasis>down</emphasis></entry>
<entry>direzione di riempimento delle colonne. Valori possibili: <emphasis>up</emphasis>/<emphasis>down</emphasis></entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
<emphasis>html_table</emphasis> è una funzione utente che formatta
un array di dati in una tabella HTML. L'attributo <emphasis>cols</emphasis>
determina il numero di colonne che formeranno la tabella. I valori
di <emphasis>table_attr</emphasis>, <emphasis>tr_attr</emphasis> e
<emphasis>td_attr</emphasis> determinano gli attributi dei tag table,
tr e td. Se <emphasis>tr_attr</emphasis> o <emphasis>td_attr</emphasis>
sono array, la funzione userà un ciclo per alternarne i valori.
<emphasis>trailpad</emphasis> è il valore da usare nelle ultime celle
da aggiungere all'ultima riga, nel caso in cui il numero di valori
nell'array loop non sia divisibile per il numero di colonne.
</para>
<example>
<title>html_table</title>
<programlisting>
<![CDATA[
index.php:
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->assign('data',array(1,2,3,4,5,6,7,8,9));
$smarty->assign('tr',array('bgcolor="#eeeeee"','bgcolor="#dddddd"'));
$smarty->display('index.tpl');
index.tpl:
{html_table loop=$data}
{html_table loop=$data cols=4 table_attr='border="0"'}
{html_table loop=$data cols=4 tr_attr=$tr}
OUTPUT:
<table border="1">
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>4</td><td>5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
<table border="0">
<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>
<tr><td>5</td><td>6</td><td>7</td><td>8</td></tr>
<tr><td>9</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
</table>
<table border="1">
<tr bgcolor="#eeeeee"><td>1</td><td>2</td><td>3</td><td>4</td></tr>
<tr bgcolor="#dddddd"><td>5</td><td>6</td><td>7</td><td>8</td></tr>
<tr bgcolor="#eeeeee"><td>9</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
</table>
]]></programlisting>
</example>
</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
-->