Helper::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace XoopsModules\About;
4
5
/*
6
 * You may not change or alter any portion of this comment or credits
7
 * of supporting developers from this source code or any supporting source code
8
 * which is considered copyrighted (c) material of the original comment or credit authors.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 */
14
15
/**
16
 * @copyright    XOOPS Project https://xoops.org/
17
 * @license      GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
18
 * @package
19
 * @since
20
 * @author       XOOPS Development Team
21
 */
22
23
/**
24
 * Class Helper
25
 */
26
class Helper extends \Xmf\Module\Helper
27
{
28
    public $debug;
29
30
    /**
31
     * @param bool $debug
32
     */
33
    public function __construct($debug = false)
34
    {
35
        $this->debug   = $debug;
36
        $moduleDirName = \basename(\dirname(__DIR__));
37
        parent::__construct($moduleDirName);
38
    }
39
40
    /**
41
     * @param bool $debug
42
     *
43
     * @return \XoopsModules\About\Helper
44
     */
45
    public static function getInstance($debug = false)
46
    {
47
        static $instance;
48
        if (null === $instance) {
49
            $instance = new self($debug);
50
        }
51
52
        return $instance;
53
    }
54
55
    /**
56
     * @return string
57
     */
58
    public function getDirname()
59
    {
60
        return $this->dirname;
61
    }
62
63
    /**
64
     * Get an Object Handler
65
     *
66
     * @param string $name name of handler to load
67
     *
68
     * @return bool|\XoopsObjectHandler|\XoopsPersistableObjectHandler
69
     */
70
    public function getHandler($name)
71
    {
72
        $ret = false;
0 ignored issues
show
Unused Code introduced by
The assignment to $ret is dead and can be removed.
Loading history...
73
74
        $class = __NAMESPACE__ . '\\' . \ucfirst($name) . 'Handler';
75
        if (!\class_exists($class)) {
76
            throw new \RuntimeException("Class '$class' not found");
77
        }
78
        /** @var \XoopsMySQLDatabase $db */
79
        $db     = \XoopsDatabaseFactory::getDatabaseConnection();
80
        $helper = self::getInstance();
81
        $ret    = new $class($db, $helper);
82
        $this->addLog("Getting handler '{$name}'");
83
        return $ret;
84
    }
85
}
86