AlkantarClanX12

Your IP : 216.73.216.176


Current Path : /var/www/ispconfig/dashboard/dashlets/
Upload File :
Current File : /var/www/ispconfig/dashboard/dashlets/donate.php

<?php

class dashlet_donate {

	function show() {
		global $app, $conf;
		
		if($app->auth->is_admin()) {
			
			//* Check if dashlet is not hidden
			
			//* Loading Template
			$app->uses('tpl');

			$tpl = new tpl;
			$tpl->newTemplate("dashlets/templates/donate.htm");

			$wb = array();
			$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_donate.lng';
			if(is_file($lng_file)) include $lng_file;
			$tpl->setVar($wb);

			return $tpl->grab();
			
		} else {
			return '';
		}

	}

}

?>