shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

index.php (405B)


      1 <?php
      2 // Version
      3 define('VERSION', '3.0.2.0');
      4 
      5 // Configuration
      6 if (is_file('config.php')) {
      7 	require_once('config.php');
      8 }
      9 
     10 // Install
     11 if (!defined('DIR_APPLICATION')) {
     12 	header('Location: install/index.php');
     13 	exit;
     14 }
     15 
     16 // VirtualQMOD
     17 require_once('./vqmod/vqmod.php');
     18 VQMod::bootup();
     19 
     20 // VQMODDED Startup
     21 require_once(VQMod::modCheck(DIR_SYSTEM . 'startup.php'));
     22 
     23 start('catalog');