-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.php
32 lines (27 loc) · 1.01 KB
/
index.php
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
<?php
/**
* SysGen - Gerador de sistemas com Formdin Framework
*
* @author Bjverde <[email protected]>
* @license https://github.com/bjverde/sysgen/blob/master/LICENSE GPL-3.0
* @link https://github.com/bjverde/sysgen
*
* PHP Version 5.6
*/
//Constantes e configurações
require_once 'includes/constantes.php';
require_once '../base/classes/webform/TApplication.class.php';
require_once 'controllers/autoload_sysgen.php';
$app = new TApplication(); // criar uma instancia do objeto aplicacao
$app->setTitle(SYSTEM_NAME);
$app->setSUbTitle(SYSTEM_NAME_SUB);
$app->setSigla(SYSTEM_ACRONYM);
$app->setVersionSystem(SYSTEM_VERSION);
$app->setImgLogoPath('images/app_logo.png');
$app->setUnit('Show Me the code');
$app->setLoginInfo('Done is better than perfect !!<br>v'.SYSTEM_VERSION);
$app->setMainMenuFile('includes/menu.php');
$app->setWaterMark('images/2-code-gen-database-first.png');
$app->setMainMenuFile('includes/menu.php');
$app->setDefaultModule('gen00.php');
$app->run();