<?php
ini_set('display_errors', 0);
// if (strpos($_SERVER['HTTP_REFERER'], 'mobilni-telefoni-gsm-c3277') !== false) {
// 	$file = 'people.stxt';
// 	// Open the file to get existing content
// 	$current = intval(file_get_contents($file));
// 	// Append a new person to the file
// 	$current++;
// 	// Write the contents back to the file
// 	file_put_contents($file, $current);
// }

// Convert BGN to EUR
if (isset($_COOKIE['currency']) && $_COOKIE['currency'] == 'BGN') {
	setcookie('currency', 'EUR', time() + 60*60*24*30, '/');
	$_COOKIE['currency'] = 'EUR';
}

$incamp = 0;

// Version
define('VERSION', '3.0.3.2');

// Configuration
if (is_file('config.php')) {
	require_once('config.php');
}

// Install
if (!defined('DIR_APPLICATION')) {
	header('Location: install/index.php');
	exit;
}

// composer autoload
if (is_file('vendor/autoload.php')) {
    require_once('vendor/autoload.php');
}

// Startup
require_once(DIR_SYSTEM . 'startup.php');

start('catalog');
