-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (33 loc) · 1.18 KB
/
index.php
File metadata and controls
40 lines (33 loc) · 1.18 KB
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
34
35
36
37
38
39
40
<?php
/**
* En este frame se van cargado cada una de las funcionalidades del sistema
*
* Descripcion Larga
*
* @category
* @package SGD Orfeo
* @subpackage Main
* @author Community
* @author Skina Technologies SAS (http://www.skinatech.com)
* @license GNU/GPL <http://www.gnu.org/licenses/gpl-2.0.html>
* @link http://www.orfeolibre.org
* @version SVN: $Id$
* @since
*/
/* ---------------------------------------------------------+
| INCLUDES |
+--------------------------------------------------------- */
/* ---------------------------------------------------------+
| DEFINICIONES |
+--------------------------------------------------------- */
/* ---------------------------------------------------------+
| MAIN |
+--------------------------------------------------------- */
/* by skinatech 2012
* Check for existing configuration file.
*/
if (!(file_exists('config.php') && filesize('config.php') > 10)) {
header('Location: instalacion/index.php');
} else
include "login.php";
?>