You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
797 B
PHP
23 lines
797 B
PHP
<?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
|
|
<div id="footer">
|
|
<a target="_blank" href="http://postfixadmin.com/">Postfix Admin <?php print $version; ?></a>
|
|
|
|
|
<?php
|
|
if(isset($_SESSION['sessid']['username'])) {
|
|
printf($PALANG['pFooter_logged_as'], authentication_get_username());
|
|
}
|
|
?>
|
|
|
|
|
<a target="_blank" href="http://postfixadmin.sf.net/update-check.php?version=<?php print $version; ?>"><?php print $PALANG['check_update']; ?></a>
|
|
<?php
|
|
if (($CONF['show_footer_text'] == "YES") and ($CONF['footer_link']))
|
|
{
|
|
print " | ";
|
|
print "<a href=\"" . $CONF['footer_link'] . "\">" . $CONF['footer_text'] . "</a>\n";
|
|
}
|
|
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|