system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
cmd: 

Direktori : /home/pfhr/public_html/admin/classes/Controller/
Upload File :
Current File : /home/pfhr/public_html/admin/classes/Controller/CSubAdminPrevillage.php

<?php

?>

<?PHP
class Controller_CSubAdminPrevillage
{
	var $output=array();
	
	function showSubAdminPrevilage()
	{
		
		include_once('classes/Controller/CHeader.php');
		include_once('classes/Controller/CFooter.php');

		//For Dynamic display of right_help menu
		include_once('classes/Model/MRightHelp.php');
		include_once('classes/Display/DRightHelp.php');
		$output['right_help'] = Model_MRightHelp::showRightHelp();
		//End of right_help menu
		
		include_once('classes/Model/MHeader.php');
		$output['help_tips']=Model_MHeader::showHelpTips(trim($_GET['do']),trim($_GET['action']));

		$output['header']=Controller_CHeader::showHeader();
		
		Bin_Template::createTemplate('subadminprevilage.html',$output);
		
		$output['footer']=Controller_CFooter::showFooter();
		
		unset($_SESSION['error_message']);
		
	}
} 

?>