-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
76 lines (68 loc) · 1.3 KB
/
index.php
File metadata and controls
76 lines (68 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?PHP
/**
*
* Archivo de Marcos
*
* Es el contenedor de FRAMESETs
* Inicia los marcos en <B>indexFrame.htm</B>.<BR>
*
* Esta Formado por:
*
*<PRE>
*<var>INDEXFRAME</var>
* <B>"Menu"</B>
* •tabsMenu (tabs con controles para los árboles)
* °treeAdmin
* °treePortal
* <B>"Jobs"</B>
* •blank
* •tabsJobs (tabs sin controles)
* °list
* °form
* •tabsJobNewOpen (tabs sin controles)
* °form
* °relations
* °public
*</PRE>
*
* @link http://localhost/Admin.2005/View/Default/indexFrame.htm Presentación Gráfica
*
* @author Hernan Ramirez <Hernan.Javier.Ramirez@gmail.com>
* @version 1.0
* @since 2005.03.15
* @package ControllerApp
* @see MainIndex
*
*/
/**
* Incluyo mi modelo de plantilla.
*/
require_once 'ModelApp/Smarty.php';
/**
* Clase principal de <B>index.php</B>
* @see index.php
* @package ControllerApp
*/
class MainIndex
{
/**
* <B>setSmarty</B>
* Creo una instancia de la plantilla para visualizarla.
*
* @see MySmarty
* @param Sin parámetros
* @return NULL
* @access public
* @static
* @final
*/
function main(){
/**
* Mando a mostrar
*/
$sm = new MySmarty();
$sm->display( $sm->plantilla . 'indexFrame.htm' );
}
}
MainIndex::main();
?>