1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_admin/credits.php

64 lines
2.1 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
2013-03-21 12:56:55 +01:00
* e107 website system
*
* Copyright (C) 2008-2013 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* Credits
*
2012-11-26 18:42:11 -08:00
*/
2006-12-02 04:36:16 +00:00
require_once("../class2.php");
2009-08-28 16:11:02 +00:00
2012-11-26 18:42:11 -08:00
$css = "body { text-align: left; font-size:13px; line-height:1.5em; font-weight:normal; font-family:Arial, Helvetica, sans-serif; }
p { margin:0px 5px 10px 5px; }
2013-03-21 18:25:27 -07:00
2012-11-26 18:42:11 -08:00
a { color:#F6931E; text-decoration:none; }
a:hover { color:#134B63; text-decoration:none; }
.bold { font-weight:bold; }
.center { text-align:center; }
2013-03-21 18:25:27 -07:00
.wrapper { width:600px; margin:0px auto 0px 0px; padding-bottom:10px; }
.wrapper-middle { min-height:389px; }
.wrapper-text { }
.logo { margin-bottom:20px }
.credits-content { padding:20px 40px;}
.copyright { margin-top:30px}
2012-11-26 18:42:11 -08:00
";
e107::css('inline',$css);
require_once(e_ADMIN."auth.php");
$text .='<div class="wrapper">
2012-11-26 18:42:11 -08:00
<div class="wrapper-middle">
2013-02-22 00:50:51 -08:00
<div class="well credits-content">
2013-03-21 18:25:27 -07:00
<img class="logo" src="'.e_IMAGE_ABS.'admin_images/credits_logo.png" alt="e107 Logo" />
<div class="wrapper-text">
<h4 class="text-info">Developers</h4>
<p>
Senior Developers: Cameron Hanly, Miroslav Yovchev, Steven Davies <br />
Junior Developers: Tijn Kuyper, Henk Jongedijk <br />
Early Developers: Thom Michelbrink, James Currie, Martin Nicholls
</p>
<h4 class="text-info">3rd Party</h4>
<p>
Twitter Bootstrap, MagpieRSS, PCLZip, PCLTar, TinyMCE,<br />
2013-07-03 22:10:19 +01:00
Nuvolo Icons, PHPMailer, TCPDF, PHP UTF8
2013-03-21 18:25:27 -07:00
</p>
2019-01-24 16:30:01 +01:00
<div class="copyright">Copyright <a target="_blank" href="http://e107.org/community" title="e107 Team">e107 Inc.</a> 2008-'.date('Y').'</div>
2013-03-21 18:25:27 -07:00
</div>
</div>
2012-11-26 18:42:11 -08:00
</div>
</div>';
$ns->tablerender("",$text);
require_once(e_ADMIN."footer.php");
2019-01-24 16:30:01 +01:00
exit;