cvs: smarty /libs/core core.assign_smarty_interface.php core.display_debug_console.php /libs/plugins function.assign.php function.html_options.php function.html_table.php
"Messju Mohr" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.smarty |
|---|---|
| Message-ID | <cvsmessju1062147086@cvsserver> |
messju Fri Aug 29 04:51:26 2003 EDT
Modified files:
/smarty/libs/core core.assign_smarty_interface.php
core.display_debug_console.php
/smarty/libs/plugins function.assign.php function.html_options.php
function.html_table.php
Log:
fixed PHPDocumentor-comments (thanks Konstantin)
Index: smarty/libs/core/core.assign_smarty_interface.php
diff -u smarty/libs/core/core.assign_smarty_interface.php:1.2 smarty/libs/core/core.assign_smarty_interface.php:1.3
--- smarty/libs/core/core.assign_smarty_interface.php:1.2 Sat Jun 21 23:13:25 2003
+++ smarty/libs/core/core.assign_smarty_interface.php Fri Aug 29 04:51:25 2003
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty assign_smarty_interface core plugin
*
* Type: core<br>
Index: smarty/libs/core/core.display_debug_console.php
diff -u smarty/libs/core/core.display_debug_console.php:1.6 smarty/libs/core/core.display_debug_console.php:1.7
--- smarty/libs/core/core.display_debug_console.php:1.6 Wed Jul 23 12:14:47 2003
+++ smarty/libs/core/core.display_debug_console.php Fri Aug 29 04:51:25 2003
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty debug_console function plugin
*
* Type: core<br>
Index: smarty/libs/plugins/function.assign.php
diff -u smarty/libs/plugins/function.assign.php:1.3 smarty/libs/plugins/function.assign.php:1.4
--- smarty/libs/plugins/function.assign.php:1.3 Sun Apr 20 17:11:55 2003
+++ smarty/libs/plugins/function.assign.php Fri Aug 29 04:51:25 2003
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty {assign} function plugin
*
* Type: function<br>
Index: smarty/libs/plugins/function.html_options.php
diff -u smarty/libs/plugins/function.html_options.php:1.17 smarty/libs/plugins/function.html_options.php:1.18
--- smarty/libs/plugins/function.html_options.php:1.17 Sun Apr 20 17:11:59 2003
+++ smarty/libs/plugins/function.html_options.php Fri Aug 29 04:51:25 2003
@@ -6,7 +6,7 @@
*/
-/*
+/**
* Smarty {html_options} function plugin
*
* Type: function<br>
Index: smarty/libs/plugins/function.html_table.php
diff -u smarty/libs/plugins/function.html_table.php:1.5 smarty/libs/plugins/function.html_table.php:1.6
--- smarty/libs/plugins/function.html_table.php:1.5 Wed May 28 18:30:58 2003
+++ smarty/libs/plugins/function.html_table.php Fri Aug 29 04:51:25 2003
@@ -1,46 +1,46 @@
<?php
/**
-* Smarty plugin
-* @package Smarty
-* @subpackage plugins
-*/
+ * Smarty plugin
+ * @package Smarty
+ * @subpackage plugins
+ */
/**
-* 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>
-* Input:<br>
-* - loop = array to loop through
-* - cols = number of columns
-* - rows = number of rows
-* - table_attr = table attributes
-* - tr_attr = table row attributes (arrays are cycled)
-* - td_attr = table cell attributes (arrays are cycled)
-* - trailpad = value to pad trailing cells with
-* - vdir = vertical direction (default: "down", means top-to-bottom)
-* - 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)
-*
-*
-* Examples:
-* <pre>
-* {table loop=$data}
-* {table loop=$data cols=4 tr_attr='"bgcolor=red"'}
-* {table loop=$data cols=4 tr_attr=$colors}
-* </pre>
-* @author Monte Ohrt <[email protected]>
-* @version 1.0
-* @link http://smarty.php.net/manual/en/language.function.html.table.php {html_table}
-* (Smarty online manual)
-* @param array
-* @param Smarty
-* @return string
-*/
+ * 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>
+ * Input:<br>
+ * - loop = array to loop through
+ * - cols = number of columns
+ * - rows = number of rows
+ * - table_attr = table attributes
+ * - tr_attr = table row attributes (arrays are cycled)
+ * - td_attr = table cell attributes (arrays are cycled)
+ * - trailpad = value to pad trailing cells with
+ * - vdir = vertical direction (default: "down", means top-to-bottom)
+ * - 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)
+ *
+ *
+ * Examples:
+ * <pre>
+ * {table loop=$data}
+ * {table loop=$data cols=4 tr_attr='"bgcolor=red"'}
+ * {table loop=$data cols=4 tr_attr=$colors}
+ * </pre>
+ * @author Monte Ohrt <[email protected]>
+ * @version 1.0
+ * @link http://smarty.php.net/manual/en/language.function.html.table.php {html_table}
+ * (Smarty online manual)
+ * @param array
+ * @param Smarty
+ * @return string
+ */
function smarty_function_html_table($params, &$smarty)
{
$table_attr = 'border="1"';
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php