blob: 4027393ad333239dc11521de641f4d3c84061f55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
include_once('../../function.php');
include_once('../../vendor/autoload.php');
// pod do /main/survey/ - kot ROOT direktorij
define('MAIN', __DIR__ . DIRECTORY_SEPARATOR);
//direktorij app
define('APP', MAIN . 'app' . DIRECTORY_SEPARATOR);
// Nastavitve, kjer določamo PHP debuging/error
require APP . 'config.php';
new App\Controllers\Controller();
// Definicija vseh spremenljiv, ki jih uporabljamo med razredi
new App\Controllers\VariableClass();
require_once(APP.'global_function.php');
// začetek aplikacije
new \App\Controllers\SurveyController(true);
// Poklicemo ustrezen ajax
if ($_GET['t'] == 'parapodatki') {
SurveyAdvancedParadataLog::getInstance()->ajax();
}
else {
new \App\Controllers\AjaxController();
}
?>
|