This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.php
118 lines (103 loc) · 2.02 KB
/
init.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
/**
* Inicializar la sesión.
**/
session_start();
/**
* Rutas de sistema.
**/
define('DS', DIRECTORY_SEPARATOR);
define('ROOT', dirname(realpath(__FILE__)));
define('RSC', ROOT . DS . 'ressources' . DS);
define('SYS', ROOT . DS . 'system' . DS);
define('SITE', 'http://localhost/game/');
define('SITE_DATA', SITE . 'ressources/');
/**
* Información del juego.
**/
define('VERSION', '0.1 A');
define('GAME', 'Ship Kill');
/**
* Incluiciones Generales
*
**/
require SYS . 'Mysql.php';
/**
* Estructura del menu.
**/
$menu =
[
/**
* Enlaces sin Ajax.
* Nombre del enlace | url hacía el enlace.
**/
'Indice_N' =>
[
'Índice' => '#',
'About' => '#',
'Sistema' => '#',
'Jugabilidad' => '#'
],
/**
* Enlaces con Ajax.
* Nombre del enlace | archivo a cargar en ./system/ajax/[ARCHIVO].
**/
'Indice_A' =>
[
'Índice' => 'index',
'About' => 'about',
'Sistema' => 'system',
'Jugabilidad' => 'gaming'
],
'Me_N' =>
[
'Perfil' => '#',
'Perfil' => '#',
'Perfil' => '#',
'Perfil' => '#'
],
'Me_A' =>
[
'Perfil' => 'profile',
'Partidas' => 'game',
'Ranking' => 'rank',
'Personaje' => 'person'
]
];
/**
* Obtener el resultado dependiendo de el sitio.
**/
function getTitle($site, $separator = '-', $afterText)
{
return $site . ' ' . $separator . ' ' . $afterText;
}
/**
* Obtener el menu dependiendo del sitio actual.
*
**/
function getMenu($selector, $site, $ajax = false)
{
global $menu;
if(!$ajax)
{
foreach($menu[$site.'_N'] as $name => $link)
echo '<a href="' . $link . '">' . $name . '</a>';
}
else
{
foreach($menu[$site.'_A'] as $name => $site):
$title = getTitle($name, '-', GAME);
?>
<a href="#" onclick="loadInBox('<?=$selector;?>', '<?=SITE.'ressources/tpl/ajax/'.$site.'.php';?>', '<?=$title;?>');"><?=$name?></a>
<?php endforeach;
}
}
/**
* Autocarga de clases.
*
**/
function __autoload($name)
{
require SYS . $name . '.php';
}
?>