summaryrefslogtreecommitdiff
path: root/libs/plugins/function.html_table.php
diff options
context:
space:
mode:
authorUwe Tews <uwe.tews@googlemail.com>2017-11-11 07:11:33 +0100
committerUwe Tews <uwe.tews@googlemail.com>2017-11-11 07:11:33 +0100
commit654659aadf7575f9437911602064f8440910a1a0 (patch)
tree86b32cbc45e65b4e4b1b70e71fa995bc2eb3f269 /libs/plugins/function.html_table.php
parent96bcbd22219359b140fa05d0806cef3a7520afa4 (diff)
downloadsmarty-654659aadf7575f9437911602064f8440910a1a0.tar.gz
smarty-654659aadf7575f9437911602064f8440910a1a0.tar.bz2
smarty-654659aadf7575f9437911602064f8440910a1a0.zip
remove html tags from PHPDoc blocks
Diffstat (limited to 'libs/plugins/function.html_table.php')
-rw-r--r--libs/plugins/function.html_table.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/libs/plugins/function.html_table.php b/libs/plugins/function.html_table.php
index 420d61af..d9a9fd69 100644
--- a/libs/plugins/function.html_table.php
+++ b/libs/plugins/function.html_table.php
@@ -8,12 +8,12 @@
/**
* Smarty {html_table} function plugin
- * Type: function<br>
- * Name: html_table<br>
- * Date: Feb 17, 2003<br>
- * Purpose: make an html table from an array of data<br>
+ * Type: function
+ * Name: html_table
+ * Date: Feb 17, 2003
+ * Purpose: make an html table from an array of data
* Params:
- * <pre>
+ *
* - loop - array to loop through
* - cols - number of columns, comma separated list of column names
* or array of column names
@@ -28,13 +28,13 @@
* - hdir - horizontal direction (default: "right", means left-to-right)
* - inner - inner loop (default "cols": print $loop line by line,
* $loop will be printed column by column otherwise)
- * </pre>
+ *
* Examples:
- * <pre>
+ *
* {table loop=$data}
* {table loop=$data cols=4 tr_attr='"bgcolor=red"'}
* {table loop=$data cols="first,second,third" tr_attr=$colors}
- * </pre>
+ *
*
* @author Monte Ohrt <monte at ohrt dot com>
* @author credit to Messju Mohr <messju at lammfellpuschen dot de>