1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
You may not change or alter any portion of this comment or credits |
5
|
|
|
of supporting developers from this source code or any supporting source code |
6
|
|
|
which is considered copyrighted (c) material of the original comment or credit authors. |
7
|
|
|
|
8
|
|
|
This program is distributed in the hope that it will be useful, |
9
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
10
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
11
|
|
|
*/ |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* Module: randomquote |
15
|
|
|
* |
16
|
|
|
* @category Module |
17
|
|
|
* @package randomquote |
18
|
|
|
* @author XOOPS Development Team <[email protected]> - <https://xoops.org> |
19
|
|
|
* @copyright {@link https://xoops.org/ XOOPS Project} |
20
|
|
|
* @license GPL 2.0 or later |
21
|
|
|
* @link https://xoops.org/ |
22
|
|
|
* @since 1.0.0 |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
use Xmf\Language; |
26
|
|
|
use Xoopsmodules\randomquote; |
|
|
|
|
27
|
|
|
|
28
|
|
|
require_once dirname(dirname(__DIR__)) . '/mainfile.php'; |
29
|
|
|
require_once XOOPS_ROOT_PATH . '/header.php'; |
30
|
|
|
require_once __DIR__ . '/include/common.php'; |
31
|
|
|
|
32
|
|
|
$moduleDirName = basename(__DIR__); |
33
|
|
|
|
34
|
|
|
/** @var randomquote\Helper $helper */ |
35
|
|
|
$helper = randomquote\Helper::getInstance(); |
36
|
|
|
$utility = new randomquote\Utility(); |
37
|
|
|
|
38
|
|
|
$quotesHandler = new randomquote\QuotesHandler($GLOBALS['xoopsDB']); |
39
|
|
|
/** @var \XoopsPersistableObjectHandler $categoryHandler */ |
40
|
|
|
$categoryHandler = new randomquote\CategoryHandler($GLOBALS['xoopsDB']); |
41
|
|
|
|
42
|
|
|
$quotesPaginationLimit = $GLOBALS['xoopsModuleConfig']['userpager']; |
43
|
|
|
|
44
|
|
|
$modulePath = XOOPS_ROOT_PATH . '/modules/' . $moduleDirName; |
45
|
|
|
//require_once __DIR__ . '/include/config.php'; |
46
|
|
|
//require_once __DIR__ . '/class/utility.php'; |
47
|
|
|
|
48
|
|
|
//$myts = \MyTextSanitizer::getInstance(); |
49
|
|
|
//$stylesheet = "modules/{$moduleDirName}/assets/css/style.css"; |
50
|
|
|
//if (file_exists($GLOBALS['xoops']->path($stylesheet))) { |
51
|
|
|
// $GLOBALS['xoTheme']->addStylesheet($GLOBALS['xoops']->url("www/{$stylesheet}")); |
52
|
|
|
//} |
53
|
|
|
//handlers |
54
|
|
|
///** @var \XoopsPersistableObjectHandler $quotesHandler */ |
55
|
|
|
//$quotesHandler = new randomquote\QuotesHandler($GLOBALS['xoopsDB']); |
56
|
|
|
///** @var \XoopsPersistableObjectHandler $categoryHandler */ |
57
|
|
|
//$categoryHandler = new randomquote\CategoryHandler($GLOBALS['xoopsDB']); |
58
|
|
|
|
59
|
|
|
// Load language files |
60
|
|
|
$helper->loadLanguage('modinfo'); |
61
|
|
|
$helper->loadLanguage('main'); |
62
|
|
|
|
Let’s assume that you have a directory layout like this:
and let’s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: