19 lines
630 B
PHP
19 lines
630 B
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 07/gen/2016
|
|
*/
|
|
|
|
// Include GUI Handler
|
|
// require_once(dirname(__FILE__)."/gui/GUIHandler.php");
|
|
// require_once(dirname(__FILE__)."/gui/ThumbnailGenerator.php");
|
|
require_once(dirname(__FILE__)."/CatalogManager.php");
|
|
require_once(dirname(__FILE__)."/StaticCatalogManager.php");
|
|
|
|
// require_once(dirname(__FILE__)."/LoginManager.php");
|
|
|
|
|
|
// GUIHandler::setCatalogManager(new StaticCatalogManager($catalog[$config->locale->gui]));
|
|
// $systemCatalogManager = new StaticCatalogManager($catalog[$config->locale->system]);
|
|
$systemCatalogManager = new StaticCatalogManager(array());
|
|
?>
|