403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Old Sites/Engineering/V2/modules/mod_exmenu-j15/exmenu/loader/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Old Sites/Engineering/V2/modules/mod_exmenu-j15/exmenu/loader/factory.menuloader.class.php
<?php
/**
* @version $Id:$
* @author Daniel Ecer
* @package exmenu
* @copyright (C) 2005-2009 Daniel Ecer (de.siteof.de)
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/

// no direct access
if (!defined('EXTENDED_MENU_HOME')) {
	die('Restricted access');
}

/**
 * @since 1.0.0
 */
class ExtendedMenuLoaderFactory {
	
	function &getNewMenuLoader($type) {
		require_once(EXTENDED_MENU_HOME.'/util/databasehelper.class.php');
		require_once(EXTENDED_MENU_HOME.'/loader/menucache.class.php');
		require_once(EXTENDED_MENU_HOME.'/loader/menuloader.class.php');
		switch($type) {
			case 'section':
				require_once(EXTENDED_MENU_HOME.'/loader/section.menuloader.class.php');
				$menuLoader						=& new SectionExtendedMenuLoader();
				break;
			case 'category':
				require_once(EXTENDED_MENU_HOME.'/loader/category.menuloader.class.php');
				$menuLoader						=& new CategoryExtendedMenuLoader();
				break;
			case 'content_item':
				require_once(EXTENDED_MENU_HOME.'/loader/contentitem.menuloader.class.php');
				$menuLoader						=& new ContentItemExtendedMenuLoader();
				break;
			case 'menu_auto_expanded':
				require_once(EXTENDED_MENU_HOME.'/loader/autoexpandedmenu.menuloader.class.php');
				$menuLoader						=& new AutoExpandedExtendedMenuLoader();
				break;
			case 'plugin':
				require_once(EXTENDED_MENU_HOME.'/loader/plugin.menuloader.class.php');
				$menuLoader						=& new PluginExtendedMenuLoader();
				break;
			default:
				require_once(EXTENDED_MENU_HOME.'/loader/menu.menuloader.class.php');
				$menuLoader						=& new ExtendedMenuLoader();
		}
		return $menuLoader;
	}
}

?>

Youez - 2016 - github.com/yon3zu
LinuXploit