feat: import 9 missing OGP themes (Evolution, Soft, mobile, Uprise, Silver, Katiuska, expand-soft, DarkNature, Metro)
Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/491e883b-1dc5-4ca0-83bf-39faa9060c34 Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
4
themes/Evolution/botbody.html
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
139
themes/Evolution/bottom.html
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
<script>
|
||||
(function() {
|
||||
var nodes = document.getElementById('administration').getElementsByTagName('span');
|
||||
for(var i=0; i<nodes.length; i++) {
|
||||
myclass = nodes[i].className;
|
||||
if(typeof myclass != "undefined" && myclass != "")
|
||||
{
|
||||
nodes[i].style.background = "url(modules/administration/images/"+myclass+".png) 0% 50% / 24px 24px no-repeat scroll transparent";
|
||||
nodes[i].style.padding = "5px 0 5px 35px";
|
||||
}
|
||||
}
|
||||
|
||||
var nodes = document.getElementById('submenu_0').getElementsByTagName('span');
|
||||
for(var i=0; i<nodes.length; i++) {
|
||||
iconPath = nodes[i].getAttribute("data-icon_path");
|
||||
if(typeof iconPath != "undefined" && iconPath != "")
|
||||
{
|
||||
nodes[i].style.background = "url("+iconPath+") 0% 50% / 16px 16px no-repeat scroll transparent";
|
||||
nodes[i].style.padding = "5px 0 5px 25px";
|
||||
}
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
<div id="bottomWrapper">
|
||||
<div class="image" style="padding-top:20px">
|
||||
%footer%
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
// Anonymous "self-invoking" function
|
||||
function GetURLParameter(sParam)
|
||||
{
|
||||
var sPageURL = window.location.search.substring(1);
|
||||
var sURLVariables = sPageURL.split('&');
|
||||
for (var i = 0; i < sURLVariables.length; i++)
|
||||
{
|
||||
var sParameterName = sURLVariables[i].split('=');
|
||||
if (sParameterName[0] == sParam)
|
||||
{
|
||||
return sParameterName[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function loadme(){
|
||||
var pathArray = window.location.pathname.split( '/' );
|
||||
var currentFile = pathArray[pathArray.length-1];
|
||||
var urlParams = window.location.search;
|
||||
var flipStatus = sessionStorage.getItem("flip");
|
||||
|
||||
if( (currentFile == 'index.php' || currentFile == '') && urlParams == '')
|
||||
{
|
||||
$('#bottomWrapper').prepend('<div id="login-blind">\
|
||||
<img id="blind-arrow" src="themes/Evolution/images/flip.png">\
|
||||
</div>');
|
||||
|
||||
if(flipStatus == "off" || flipStatus == 'null')
|
||||
{
|
||||
$('#wrapper').show();
|
||||
$('.menu-bg').show();
|
||||
$('#blind-arrow').addClass('flip');
|
||||
}
|
||||
|
||||
$('#login-blind').click(function(){
|
||||
if(sessionStorage.getItem("flip") == "off")
|
||||
{
|
||||
$('.menu-bg').slideUp("slow");
|
||||
$('#wrapper').slideUp("slow");
|
||||
$('#blind-arrow').removeClass('flip');
|
||||
sessionStorage.setItem("flip", "on");
|
||||
}
|
||||
else
|
||||
{
|
||||
$('.menu-bg').slideDown("slow");
|
||||
$('#wrapper').slideDown("slow");
|
||||
$('#blind-arrow').addClass('flip');
|
||||
sessionStorage.setItem("flip", "off");
|
||||
}
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#wrapper').show();
|
||||
$('.menu-bg').show();
|
||||
}
|
||||
|
||||
if(currentFile == 'home.php')
|
||||
{
|
||||
$('#footer').css('width','920px');
|
||||
$('.user-links').show();
|
||||
}
|
||||
|
||||
if(currentFile == 'home.php' && GetURLParameter('m') == 'ftp')
|
||||
{
|
||||
$('iframe').load(function() {
|
||||
$('iframe').contents().find("head").append('<link rel="stylesheet" type="text/css" href="../../themes/Evolution/modules/ftp/iframe.css">');
|
||||
});
|
||||
}
|
||||
|
||||
if(urlParams == '?logout')
|
||||
{
|
||||
$('.menu-bg').slideUp(2000);
|
||||
$('#wrapper').slideUp(2000);
|
||||
if(flipStatus != 'null')
|
||||
{
|
||||
sessionStorage.removeItem("flip");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(!window.jQuery)
|
||||
{
|
||||
// Load the script
|
||||
var script = document.createElement("SCRIPT");
|
||||
script.src = 'js/jquery/jquery-1.11.0.min.js';
|
||||
script.type = 'text/javascript';
|
||||
document.getElementsByTagName("head")[0].appendChild(script);
|
||||
// Poll for jQuery to come into existance
|
||||
var checkReady = function(callback) {
|
||||
if (window.jQuery) {
|
||||
callback(jQuery);
|
||||
}
|
||||
else {
|
||||
window.setTimeout(function() { checkReady(callback); }, 100);
|
||||
}
|
||||
};
|
||||
|
||||
// Start polling...
|
||||
checkReady(function($) {
|
||||
loadme();
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
loadme();
|
||||
}
|
||||
</script>
|
||||
BIN
themes/Evolution/images/arrowdown.png
Normal file
|
After Width: | Height: | Size: 272 B |
BIN
themes/Evolution/images/arrows.gif
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
themes/Evolution/images/asc.gif
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
themes/Evolution/images/bg.gif
Normal file
|
After Width: | Height: | Size: 64 B |
BIN
themes/Evolution/images/bottomLinks-bg.png
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
themes/Evolution/images/bottomWrapper-bg.png
Normal file
|
After Width: | Height: | Size: 217 B |
BIN
themes/Evolution/images/collapse.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/desc.gif
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
themes/Evolution/images/favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
themes/Evolution/images/flip.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
themes/Evolution/images/footer-bg.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
themes/Evolution/images/grunge.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
themes/Evolution/images/hmenu-sel.jpg
Normal file
|
After Width: | Height: | Size: 654 B |
BIN
themes/Evolution/images/hmenu.jpg
Normal file
|
After Width: | Height: | Size: 654 B |
BIN
themes/Evolution/images/hover.gif
Normal file
|
After Width: | Height: | Size: 62 B |
BIN
themes/Evolution/images/hover_sub.gif
Normal file
|
After Width: | Height: | Size: 76 B |
BIN
themes/Evolution/images/icon_help_small.gif
Normal file
|
After Width: | Height: | Size: 78 B |
BIN
themes/Evolution/images/icons/folder.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
themes/Evolution/images/icons/game_monitor.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
themes/Evolution/images/icons/support.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
themes/Evolution/images/menu/admin.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/administration.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/computer.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/controlpanellogin.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/cron.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Evolution/images/menu/customtab.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/customtab1.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/dashboard.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/dsi.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/dsilist.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/fastdownload.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/ftp.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/home.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/lgsl.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/menu/logout.png
Normal file
|
After Width: | Height: | Size: 452 B |
BIN
themes/Evolution/images/menu/register.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Evolution/images/menu/shop.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
themes/Evolution/images/menu/support.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
themes/Evolution/images/menu/ts3.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
themes/Evolution/images/menu/util.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Evolution/images/menu_bg.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Evolution/images/modules/billing/7daystodie.png
Normal file
|
After Width: | Height: | Size: 101 KiB |
BIN
themes/Evolution/images/modules/billing/IL2-sturmovik.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
themes/Evolution/images/modules/billing/Jediknight2.png
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
themes/Evolution/images/modules/billing/Jediknightacademy.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
themes/Evolution/images/modules/billing/Killingfloor.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
themes/Evolution/images/modules/billing/ageofchivalry.png
Normal file
|
After Width: | Height: | Size: 109 KiB |
BIN
themes/Evolution/images/modules/billing/aliensvspredator.png
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
themes/Evolution/images/modules/billing/arma2.png
Normal file
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 322 KiB |
BIN
themes/Evolution/images/modules/billing/arma3.png
Normal file
|
After Width: | Height: | Size: 123 KiB |
BIN
themes/Evolution/images/modules/billing/b3bot.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
themes/Evolution/images/modules/billing/banner.gif
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
themes/Evolution/images/modules/billing/banner.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
themes/Evolution/images/modules/billing/bf2.png
Normal file
|
After Width: | Height: | Size: 116 KiB |
BIN
themes/Evolution/images/modules/billing/bfbc2.png
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
themes/Evolution/images/modules/billing/bloodfrontier.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
themes/Evolution/images/modules/billing/cart.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
themes/Evolution/images/modules/billing/cod.png
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
themes/Evolution/images/modules/billing/cod2.png
Normal file
|
After Width: | Height: | Size: 113 KiB |
BIN
themes/Evolution/images/modules/billing/cod4mw.png
Normal file
|
After Width: | Height: | Size: 106 KiB |
BIN
themes/Evolution/images/modules/billing/codbo.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
themes/Evolution/images/modules/billing/codmw2.png
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
themes/Evolution/images/modules/billing/codmw3.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
themes/Evolution/images/modules/billing/coduo.png
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
themes/Evolution/images/modules/billing/codwaw.png
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
themes/Evolution/images/modules/billing/counterstrike.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
themes/Evolution/images/modules/billing/counterstrike2d.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
themes/Evolution/images/modules/billing/counterstrikesource.png
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
themes/Evolution/images/modules/billing/csconditionzero.png
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
themes/Evolution/images/modules/billing/csgo.png
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
themes/Evolution/images/modules/billing/cspromod.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
themes/Evolution/images/modules/billing/dayz.png
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
themes/Evolution/images/modules/billing/deathmatchclassic.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
themes/Evolution/images/modules/billing/dod.png
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
themes/Evolution/images/modules/billing/dodsource.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
themes/Evolution/images/modules/billing/dystopiswar.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
themes/Evolution/images/modules/billing/eternalsilence.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
themes/Evolution/images/modules/billing/fistfulloffrags.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
themes/Evolution/images/modules/billing/flightgear.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
themes/Evolution/images/modules/billing/garrysmod.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
themes/Evolution/images/modules/billing/gearbox.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
themes/Evolution/images/modules/billing/gtaIV.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
themes/Evolution/images/modules/billing/gtavicecity.png
Normal file
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 51 KiB |
BIN
themes/Evolution/images/modules/billing/haloce.png
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
themes/Evolution/images/modules/billing/hl2.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
themes/Evolution/images/modules/billing/hlhidden.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
themes/Evolution/images/modules/billing/hltv.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
themes/Evolution/images/modules/billing/insurgency.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
themes/Evolution/images/modules/billing/insurgencymic.png
Normal file
|
After Width: | Height: | Size: 115 KiB |
BIN
themes/Evolution/images/modules/billing/justcause2.png
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
themes/Evolution/images/modules/billing/l4d2.png
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
themes/Evolution/images/modules/billing/left4dead.png
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
themes/Evolution/images/modules/billing/left4dead2.png
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
themes/Evolution/images/modules/billing/medalofhonoraa.png
Normal file
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 106 KiB |