-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
174 lines (126 loc) · 4.33 KB
/
header.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
/**
* Archivo de Inicialización del Sistema
*
* Carga las clases base y ejecuta la solicitud.
*
* @name header.php
* @author Miguel92
*/
/*
* -------------------------------------------------------------------
* Estableciendo variables importantes
* -------------------------------------------------------------------
*/
if( !defined('TS_HEADER') ) define('TS_HEADER', TRUE);
if( !defined('ACCESS_ROOT_PATHS') ) define('ACCESS_ROOT_PATHS', TRUE);
/*
* -------------------------------------------------------------------
* Definiendo constantes
* -------------------------------------------------------------------
*/
require_once __DIR__ . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'Polyfill.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'AppVarsGlobal.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'AppRoutesGlobal.php';
// Sesión
session_name($_ENV['SESSION_NAME']);
if(!isset($_SESSION)) session_start();
ini_set('error_log', DIR_ERROR_LOG . 'zcode_error.log');
header('Content-Type: text/html; charset=utf-8');
// Establece el encabezado Cache-Control con max-age de un año
header("Cache-Control: max-age=31536000");
// Límite de ejecución
set_time_limit(300);
/*
* -------------------------------------------------------------------
* Agregamos los archivos globales
* -------------------------------------------------------------------
*/
// Funciones
include TS_EXTRA . 'functions.php';
include TS_ZCODE . 'ZCode.php';
// Nucleo
include TS_MODELS . 'c.core.php';
// Controlador de usuarios
include TS_MODELS . 'c.user.php';
// Monitor de usuario
include TS_MODELS . 'c.monitor.php';
// Actividad de usuario
include TS_MODELS . 'c.actividad.php';
// Mensajes de usuario
include TS_MODELS.'c.mensajes.php';
// Smarty
include TS_MODELS . 'c.smarty.php';
// Crean requests
include TS_EXTRA . 'QueryString.php';
// Usando un gestor de imagenes
include TS_ZCODE . 'Images.php';
include TS_ZCODE . 'Avatar.php';
$Avatar = new Avatar(new tsCore);
$Avatar->moveAvatars();
include TS_ZCODE . 'Theme.php';
$Theme = new Theme;
include TS_ZCODE . 'menu_user_account.php';
/*
* -------------------------------------------------------------------
* Inicializamos los objetos principales
* -------------------------------------------------------------------
*/
// Cargamos el nucleo
$tsCore = new tsCore();
// Usuario
$tsUser = new tsUser();
// Función para generar imagenes
$tsImages = new Images;
// Monitor
$tsMonitor = new tsMonitor();
// Actividad
$tsActividad = new tsActividad();
// Mensajes
$tsMP = new tsMensajes();
// Definimos el template a utilizar
$tsTema = $tsCore->settings['tema'];
if(empty($tsTema)) $tsTema = 'default';
define('TS_TEMA', $tsTema);
// Smarty
$smarty = new tsSmarty();
// Nueva configuración
$smarty->output(false);
/*
* -------------------------------------------------------------------
* Asignación de variables
* -------------------------------------------------------------------
*/
$smarty->assign('SocialMager', $tsCore->OAuth());
// Configuraciones
$smarty->assign('tsConfig', $tsCore->settings);
// Noticias
$smarty->assign('tsNews', $tsCore->getNews());
// Moderación total
$smarty->assign('tsNovemods', $tsCore->getNovemods());
// Solo verificación
$smarty->assign('tsVerification', $tsCore->verification());
// Obtejo usuario
$smarty->assign('tsUser', $tsUser);
// Avisos
$smarty->assign('tsAvisos', $tsMonitor->avisos);
// Nofiticaciones
$smarty->assign('tsNots', $tsMonitor->notificaciones);
// Mensajes
$smarty->assign('tsMPs', $tsMP->mensajes);
$smarty->assign('tsThemeSettings', $Theme->getSettingsTheme());
$smarty->assign('tsThemeBox', $Theme->getSettingPageBox());
$smarty->assign('tsMenuCuenta', $menu_cuenta);
$smarty->assign('tsCookieConsent', isset($_COOKIE['cc_cookie']));
if (!extension_loaded('gd') && !function_exists('gd_info')) {
$smarty->assign('gd_info', 'La extensión GD no está habilitada en tu servidor.');
}
/*
* -------------------------------------------------------------------
* Validaciones extra
* -------------------------------------------------------------------
*/
// Baneo por IP
$tsCore->verifiedIP($smarty);
// Online/Offline
$tsCore->verifiedMaintenance($smarty);