mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?php
|
||
/*
|
||
+ ----------------------------------------------------------------------------+
|
||
| e107 website system
|
||
|
|
||
| <20>Steve Dunstan 2001-2002
|
||
| http://e107.org
|
||
| jalist@e107.org
|
||
|
|
||
| Released under the terms and conditions of the
|
||
| GNU General Public License (http://gnu.org).
|
||
|
|
||
| $Source: /cvs_backup/e107_0.8/e107_plugins/powered_by_menu/powered_by_menu.php,v $
|
||
| $Revision: 1.1.1.1 $
|
||
| $Date: 2006-12-02 04:35:41 $
|
||
| $Author: mcfly_e107 $
|
||
+----------------------------------------------------------------------------+
|
||
*/
|
||
if (!defined('e107_INIT')) { exit; }
|
||
|
||
$text = "
|
||
<div style='text-align: center'>
|
||
<div class='spacer'>
|
||
<a href='http://e107.org' rel='external'><img src='".e_IMAGE_ABS."button.png' alt='e107' style='border: 0px; width: 88px; height: 31px' /></a>
|
||
</div>
|
||
<div class='spacer'>
|
||
<a href='http://php.net' rel='external'><img src='".e_IMAGE_ABS."generic/php-small-trans-light.gif' alt='PHP' style='border: 0px; width: 88px; height: 31px' /></a>
|
||
</div>
|
||
<div class='spacer'>
|
||
<a href='http://mysql.com' rel='external'><img src='".e_IMAGE_ABS."generic/poweredbymysql-88.png' alt='MySQL' style='border: 0px; width: 88px; height: 31px' /></a>
|
||
</div>
|
||
</div>";
|
||
$ns -> tablerender(POWEREDBY_L1, $text, 'powered_by');
|
||
?>
|