Open Sencillo
2015.107
Long live the simplicity of PHP
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
File List
All
Data Structures
Namespaces
Functions
Pages
/home/peter/git/OpenSencillo/basicstrap.php
1
<?php
2
/*~ basicstrap.php
3
.---------------------------------------------------------------------------.
4
| Software: Sencillo Basic Bootstrap |
5
| Version: 2015.003 |
6
| Contact:
[email protected]
|
7
| ------------------------------------------------------------------------- |
8
| Author: Bc. Peter Horváth (original founder) |
9
| Copyright (c) 2015, Bc. Peter Horváth. All Rights Reserved. |
10
| ------------------------------------------------------------------------- |
11
| License: Distributed under the General Public License (GPL) |
12
| http://www.gnu.org/licenses/gpl-3.0.html |
13
| This program is distributed in the hope that it will be useful - WITHOUT |
14
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
15
| FITNESS FOR A PARTICULAR PURPOSE. |
16
'---------------------------------------------------------------------------'
17
~*/
18
error_reporting(E_ERROR | E_PARSE);
19
include(
"./fw_headers/mysql-config.php"
);
20
include(
"./fw_headers/main-config.php"
);
21
require_once(
"./fw_core/core_interface.php"
);
22
require(
"./fw_core/core_sql.php"
);
23
require(
"./fw_headers/session.php"
);
24
require(
"./fw_headers/cookies.php"
);
25
require(
"./cache.php"
);
26
require(
"./fw_core/core_functions.php"
);
27
require(
"./fw_libraries/lib_identificator.php"
);
28
$inc=
new
library
;
29
$inc->start();
30
$paths = $inc->exportPath();
31
$realPath = array();
32
foreach
($paths as $val)
33
{
34
if
(file_exists($val))
35
{
36
require_once(
"$val"
);
37
$realPath[] = $val;
38
}
39
}
40
unset($paths);
41
42
if
(PAGE==
'admin'
)
43
{
44
require_once(
"./fw_core/core_admin.php"
);
45
}
46
?>
library
Definition:
lib_identificator.php:11
basicstrap.php
Generated on Thu Jul 2 2015 04:02:29 for Open Sencillo by
1.8.6