Happy New Year
[squirrelmail.git] / templates / default / span.tpl
index 2bbda59b515023c42a887f0b02d7d303d0b4735d..b5a955e97efaea0b03be9e0554601fc925a5c51d 100644 (file)
@@ -6,11 +6,16 @@
   * Template for constructing a span tag.
   *
   * The following variables are available in this template:
-  *      + $value   - The contents that belong inside the span
-  *      + $class   - CSS class name (optional; may not be present)
-  *      + $id      - ID name (optional; may not be present)
+  *      + $value    - The contents that belong inside the span
+  *      + $class    - CSS class name (optional; may not be present)
+  *      + $id       - ID name (optional; may not be present)
+  *      + $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 © 1999-2006 The SquirrelMail Project Team
+  * @copyright 1999-2020 The SquirrelMail Project Team
   * @license http://opensource.org/licenses/gpl-license.php GNU Public License
   * @version $Id$
   * @package squirrelmail
 extract($t);
 
 
-?><span<?php if (!empty($class)) echo ' class="' . $class . '"'; ?><?php if (!empty($id)) echo ' id="' . $id . '"'; ?>><?php echo $value; ?></span>
+echo '<span';
+if (!empty($class)) echo ' class="' . $class . '"';
+if (!empty($id)) echo ' id="' . $id . '"';
+foreach ($aAttribs as $key => $value) {
+    echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
+}
+echo '>' . $value . '</span>';
+
+