-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.php
39 lines (36 loc) · 2.1 KB
/
code.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
<?php
/*
##########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# | /| / /___) / ) (_ ` / ) /___) / / #
# _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
# Free Content / Management System #
# / #
# #
# #
# Copyright 2005-2015 by webspell.org #
# #
# visit webSPELL.org, webspell.info to get webSPELL for free #
# - Script runs under the GNU GENERAL PUBLIC LICENSE #
# - It's NOT allowed to remove this copyright-tag #
# -- http://www.fsf.org/licensing/licenses/gpl.html #
# #
# Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at), #
# Far Development by Development Team - webspell.org #
# #
# visit webspell.org #
# #
##########################################################################
*/
include(__DIR__ . "/_mysql.php");
include(__DIR__ . "/_settings.php");
include(__DIR__ . "/_functions.php");
$_language->readModule('code');
$data_array = array();
$data_array['$homepage_url'] = $hp_url;
$data_array['$rewriteBase'] = $rewriteBase;
$data_array['$componentsCss'] = generateComponents($components['css'], 'css');
$bbcode = $GLOBALS["_template"]->replaceTemplate("bbcode", $data_array);
echo $bbcode;