// 1.5 branche creation

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@5881 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
aFolletete
2011-04-12 18:24:40 +00:00
commit 10445ad61d
5317 changed files with 432110 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
$configPath = '../../config/config.inc.php';
if (file_exists($configPath))
{
include('../../config/config.inc.php');
$controller = new FrontController();
$controller->init();
if (file_exists(dirname(__FILE__).'/twenga.php'))
{
include(dirname(__FILE__).'/twenga.php');
$t = new twenga();
$t->ajaxRequestType();
unset($t);
}
else
echo 'Class module wasn\'t found';
}
else
echo 'Config file is missing';
?>