示例#1
0
function tgl_kgb_baru($gol, $mkg)
{
    $bulan = $mkg->bulan;
    $tahun = $mkg->tahun;
    $x_tahun = 0;
    $x_bulan = 0;
    if ($gol == 21 && $tahun < 1) {
        $x_tahun = 0;
        $x_bulan = 12 - $bulan;
    } else {
        if ($gol == 12 || $gol == 13 || $gol == 14 || $gol == 21 || $gol == 22 || $gol == 23 || $gol == 24) {
            $x_tahun = $tahun % 2;
            $x_bulan = 12 - $bulan;
        } else {
            $x_tahun = ($tahun + 1) % 2;
            $x_bulan = 12 - $bulan;
        }
    }
    $tahun = $x_tahun;
    $bulan = $x_bulan;
    $do_tahun = date("Y");
    $do_tahun += $tahun;
    $do_bulan = date("m");
    $do_bulan += $bulan;
    if ($do_bulan > 12) {
        $do_tahun += 1;
        $do_bulan -= 12;
    }
    $data = makedate($do_tahun, $do_bulan, 1);
    return $data;
}
示例#2
0
function adminindex_theme()
{
    global $theme, $globals, $user, $l;
    softheader($l['<title>']);
    echo '<script language="javascript" type="text/javascript" src="' . serverurls('latestinfo') . '"></script>

<script type="text/javascript">
function load_soft_info(){
	$_("softnews").style.width = $_("softnewsholder").offsetWidth;
	//The news
	if(typeof(soft_news) == "undefined"){
		$_("softnews").innerHTML = "' . $l['conect_to_soft'] . '";
	}else{
		var newsstr = "";
		for(x in soft_news){
			newsstr = newsstr+\'<div class="softnewshead">\'+soft_news[x][0]+\'</div>\'+\'<div class="softnewsblock">\'+soft_news[x][1]+\'</div><br />\';
		}
		$_("softnews").innerHTML = newsstr;
	}
	//The current version
	if(typeof(soft_latest_version) == "undefined"){
		$_("newsoftversion").innerHTML = "<i>' . $l['no_info'] . '</i>";
	}else{
		$_("newsoftversion").innerHTML = soft_latest_version;
	}
}
addonload(\'load_soft_info();\');
</script>

<br />
<div class="sai_divroundshad" style="width:690px; margin:0px auto;">
<table width="100%" cellpadding="1" cellspacing="1" class="sai_cbor">			
<tr>
<td class="header" align="center">
	<b>' . $l['news'] . '</b>
</td>
</tr>

<tr>
<td width="100%" class="cbgbor" height="200" valign="top" id="softnewsholder">
<div class="softnews" id="softnews"></div>
</td>
</tr>
</table>
</div>
<br /><br />';
    echo '
<div class="sai_divroundshad" style="width:650px; margin:0px auto; padding:20px;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="75%" colspan="2">
<div align="center" class="infohead">' . $l['soft_info'] . '<br /></div>
<img src="' . $theme['images'] . 'hr.jpg" width="100%" height="1" alt="" /><br /><br />
</td>
</tr>
<tr>
<td>
<div class="softinfo">' . (!defined('SOFTRESELLER') ? '<b>' . $l['soft_license'] . '</b> : ' . $globals['license'] . ' (' . $globals['primary_ip'] . ')<br />
<b>' . $l['soft_license_type'] . '</b> : ' . (empty($globals['lictype']) ? $l['type_0'] . ' (<a href="' . serverurls('buy') . '" target="_blank">' . $l['become_premium'] . '</a>)&nbsp; (<a href="' . serverurls('pricing') . '" target="_blank">' . $l['pricing'] . '</a>)' : $l['type_1']) . '&nbsp; (<a href="' . $globals['ind'] . 'refreshlicense">' . $l['refreshlicense'] . '</a>)' . (asperapp(0, 1, 1) ? '&nbsp; (<a href="' . $globals['ind'] . 'act=licensekey">Enter License Key</a>)' : '') : '') . ' <br />
<b>' . $l['server_addr'] . '</b> : ' . $_SERVER['SERVER_ADDR'] . '  <br />
' . (!defined('SOFTRESELLER') ? '<b>' . $l['expires'] . '</b> : ' . (empty($globals['licexpires']) ? $l['never'] : makedate($globals['licexpires']) . ' (DD/MM/YYYY)') . '  <br />' : '') . '<b>' . $l['ip_license'] . '</b> : ' . @substr(curl_call(fastestmirror() . '/ip.php', 0, 5), 0, 16) . '<br />
<b>' . $l['php_version'] . '</b> : ' . sphpversion() . '<br />
<b>' . $l['soft_version'] . '</b> : ' . asperapp($globals['version'], @$globals['webuzo_version'], @$globals['ampps_version']) . '<br />
<b>' . $l['latest_soft_version'] . '</b> : <span id="newsoftversion"></span>
</div>
</td>';
    if ($globals['softpanel'] == 'ampps' || $globals['softpanel'] == 'webuzo') {
        echo '<td width="20%">
	<img src="' . $theme['images'] . $globals['softpanel'] . (empty($globals['lictype']) ? 'free' : 'premium') . '.png" width="100%" />
</td>';
    } else {
        echo '<td width="23%">
	<img src="' . $theme['images'] . 'softaculous' . (empty($globals['lictype']) ? 'free' : 'premium') . '.png" width="100%" />
</td>';
    }
    echo '</tr>
</table>
</div>

<br /><br />';
    softfooter();
}