Retire Marc. We should probably retire some others who haven't contributed in the...
[squirrelmail.git] / templates / default / table.tpl
CommitLineData
244a64a4 1<?php
2
3/**
4 * table.tpl
5 *
6 * Template for constructing an opening table tag.
7 *
8 * The following variables are available in this template:
9 * array $attributes The table attributes
10 *
1977ab55 11 * @copyright 1999-2010 The SquirrelMail Project Team
244a64a4 12 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * @version $Id: table.tpl 12078 2007-01-07 07:28:11Z pdontthink $
14 * @package squirrelmail
15 * @subpackage templates
16 */
17
18
19// retrieve the template vars
20//
21extract($t);
22
23
24echo '<table';
25
26foreach ($attributes as $key => $value) {
27 echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
28}
29
30echo ">\n";
31