forked from XoopsModules25x/xoopsmembers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
48 lines (35 loc) · 1.42 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
<?php
/*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @copyright XOOPS Project (https://xoops.org)
* @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author XOOPS Development Team
*/
use Xmf\Module\Admin;
use XoopsModules\Xoopsmembers\Helper;
require __DIR__ . '/preloads/autoloader.php';
require_once \dirname(__DIR__, 2) . '/mainfile.php';
require XOOPS_ROOT_PATH . '/header.php';
$moduleDirName = basename(__DIR__);
$helper = Helper::getInstance();
$pathIcon16 = Admin::iconUrl('', '16');
$modulePath = XOOPS_ROOT_PATH . '/modules/' . $moduleDirName;
$myts = \MyTextSanitizer::getInstance();
if (!isset($GLOBALS['xoTheme']) || !is_object($GLOBALS['xoTheme'])) {
require $GLOBALS['xoops']->path('class/theme.php');
$GLOBALS['xoTheme'] = new \xos_opal_Theme();
}
// Load language files
$helper->loadLanguage('main');
if (!isset($GLOBALS['xoopsTpl']) || !($GLOBALS['xoopsTpl'] instanceof \XoopsTpl)) {
require $GLOBALS['xoops']->path('class/template.php');
$xoopsTpl = new \XoopsTpl();
}