mirror of
https://github.com/e107inc/e107.git
synced 2025-01-16 20:28:28 +01:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/siteinfo/powered_by_menu.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
$text = "
|
|
<div id='powered-by-menu' class='text-center'>
|
|
<a href='https://e107.org' rel='external'>
|
|
<img class='img-responsive img-fluid' src='".e_IMAGE_ABS."admin_images/credits_logo.png' alt='e107' style='max-width:100%' />
|
|
</a>
|
|
</div>
|
|
";
|
|
|
|
|
|
if(!deftrue("BOOTSTRAP")) // Old Legacy Code.
|
|
{
|
|
$text = "
|
|
<div style='text-align: center'>
|
|
<div class='spacer'>
|
|
<a href='https://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='https://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='https://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');
|