mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			151 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			5.7 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>Attribute Name</entry>
 | |
|                         <entry>Type</entry>
 | |
|                         <entry>Required</entry>
 | |
|                         <entry>Default</entry>
 | |
|                         <entry>Description</entry>
 | |
|                     </row>
 | |
|                 </thead>
 | |
|                 <tbody>
 | |
|                     <row>
 | |
|                         <entry>loop</entry>
 | |
|                         <entry>array</entry>
 | |
|                         <entry>Yes</entry>
 | |
|                         <entry><emphasis>n/a</emphasis></entry>
 | |
|                         <entry>array of data to loop through</entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>cols</entry>
 | |
|                         <entry>integer</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>3</emphasis></entry>
 | |
|                         <entry>number of columns in the table</entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>table_attr</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>border="1"</emphasis></entry>
 | |
|                         <entry>attributes for table tag</entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>tr_attr</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>empty</emphasis></entry>
 | |
|                         <entry>attributes for tr tag (arrays are cycled)</entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>td_attr</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>empty</emphasis></entry>
 | |
|                         <entry>attributes for td tag (arrays are cycled)</entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>trailpad</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>&nbsp;</emphasis></entry>
 | |
|                         <entry>value to pad the trailing cells on last row with
 | |
| 						(if any)</entry>
 | |
|                     </row>
 | |
| 
 | |
|                     <row>
 | |
|                         <entry>hdir</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>right</emphasis></entry>
 | |
|                         <entry>direction of one row to be rendered. possible values: <emphasis>left</emphasis>/<emphasis>right</emphasis></entry>
 | |
|                     </row>
 | |
|                     <row>
 | |
|                         <entry>vdir</entry>
 | |
|                         <entry>string</entry>
 | |
|                         <entry>No</entry>
 | |
|                         <entry><emphasis>down</emphasis></entry>
 | |
|                         <entry>direction of the columns to be rendered. possible values: <emphasis>up</emphasis>/<emphasis>down</emphasis></entry>
 | |
|                     </row>
 | |
|                 </tbody>
 | |
|                 </tgroup>
 | |
|             </informaltable>
 | |
| 			<para>
 | |
| 			<emphasis>html_table</emphasis> is a custom function that dumps an
 | |
| 			array of data into an HTML table. The <emphasis>cols</emphasis>
 | |
| 			attribute determines how many columns will be in the table. The
 | |
| 			<emphasis>table_attr</emphasis>, <emphasis>tr_attr</emphasis> and
 | |
| 			<emphasis>td_attr</emphasis> values determine the attributes given
 | |
| 			to the table, tr and td tags. If <emphasis>tr_attr</emphasis> or
 | |
| 			<emphasis>td_attr</emphasis> are arrays, they will be cycled through.
 | |
| 			<emphasis>trailpad</emphasis> is the value put into the trailing
 | |
| 			cells on the last table row if there are any present.
 | |
| 			</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> </td><td> </td><td> </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> </td><td> </td><td> </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
 | |
| --> |