psf
psf.php
1 <?php
2 
3 // Entry point to psf
4 
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 
15 // Copyright (c) Petr Bena <petr@bena.rocks> 2015 - 2019
16 
17 define ("PSF_ENTRY_POINT", "psf.php");
18 
19 // System stuff
20 require_once (dirname(__FILE__) . "/definitions.php");
21 require_once (dirname(__FILE__) . "/default_config.php");
22 require_once (dirname(__FILE__) . "/includes/systemlog.php");
23 require_once (dirname(__FILE__) . "/includes/localization.php");
24 
25 // Authentication stack
26 require_once (dirname(__FILE__) . "/includes/auth_stack.php");
27 
28 // HTML
29 require_once (dirname(__FILE__) . "/includes/html_stack.php");
30 
31 // API
32 require_once (dirname(__FILE__) . "/includes/api/apibase_json.php");
33 
34 // JS stuff
35 //require_once (dirname(__FILE__) . "/includes/js/jshandler.php");
36 //require_once (dirname(__FILE__) . "/includes/js/tooltip.php");
37