Add horizontal rule template and update line break to handle attributes
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 17:36:18 +0000 (17:36 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 17:36:18 +0000 (17:36 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13210 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/horizontal_rule.tpl [new file with mode: 0644]
templates/default/line_break.tpl

diff --git a/templates/default/horizontal_rule.tpl b/templates/default/horizontal_rule.tpl
new file mode 100644 (file)
index 0000000..8ca2bba
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+
+/**
+  * horizontal_rule.tpl
+  *
+  * Template for constructing a horizontal rule.
+  *
+  * The following variables are available in this template:
+  *
+  * array $aAttribs Any extra attributes: an associative array, where
+  *                 keys are attribute names, and values (which are
+  *                 optional and might be null) should be placed
+  *                 in double quotes as attribute values (optional;
+  *                 may not be present)
+  *
+  * @copyright &copy; 1999-2008 The SquirrelMail Project Team
+  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+  * @version $Id$
+  * @package squirrelmail
+  * @subpackage templates
+  */
+
+
+echo '<hr'; 
+foreach ($aAttribs as $key => $value) {
+    echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
+}
+echo ' />';
index 89196d92de832f500ab2ebe3e2b11cd7b3a951d9..4c782813bd736cdc7adcfc8c0bd9dff2cc4a00ad 100644 (file)
@@ -6,7 +6,12 @@
   * Template for constructing a line break.
   *
   * The following variables are available in this template:
-  *      (none)
+  *
+  * array $aAttribs Any extra attributes: an associative array, where
+  *                 keys are attribute names, and values (which are
+  *                 optional and might be null) should be placed
+  *                 in double quotes as attribute values (optional;
+  *                 may not be present)
   *
   * @copyright &copy; 1999-2008 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
@@ -16,4 +21,8 @@
   */
 
 
-?><br />
+echo '<br';
+foreach ($aAttribs as $key => $value) {
+    echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
+}
+echo ' />';