squirrelmail/templates/default/motd.tpl
2025-01-03 11:47:03 -08:00

33 lines
720 B
Smarty

<?php
/**
* motd.tpl
*
* Tempalte for display Message of the day
*
* Variables available in this template:
* $motd - string containing the MOTD to be displayed
*
* @copyright 1999-2025 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id$
* @package squirrelmail
* @subpackage templates
*/
// Get variables from template
extract($t);
?>
<!-- Begin MOTD -->
<div class="sqm_motdWrapper">
<table class="sqm_motd" cellspacing="3">
<tr>
<td>
<?php echo $motd;
if (!empty($plugin_output['motd_inside']))
echo $plugin_output['motd_inside'];
?>
</td>
</tr>
</table>
</div>
<!-- End MOTD -->