Helper::getHandler()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 14
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 9
nc 2
nop 1
dl 0
loc 14
rs 9.9666
c 1
b 0
f 0
1
<?php
2
3
namespace XoopsModules\Cssholmes;
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
 * Class Helper
24
 */
25
class Helper extends \Xmf\Module\Helper
26
{
27
    public $debug;
28
29
    /**
30
     * @param bool $debug
31
     */
32
    public function __construct($debug = false)
33
    {
34
        $this->debug   = $debug;
35
        $moduleDirName = \basename(\dirname(__DIR__));
36
        parent::__construct($moduleDirName);
37
    }
38
39
    /**
40
     * @param bool $debug
41
     *
42
     * @return \XoopsModules\Cssholmes\Helper
43
     */
44
    public static function getInstance($debug = false)
45
    {
46
        static $instance;
47
        if (null === $instance) {
48
            $instance = new static($debug);
49
        }
50
51
        return $instance;
52
    }
53
54
    /**
55
     * @return string
56
     */
57
    public function getDirname()
58
    {
59
        return $this->dirname;
60
    }
61
62
    /**
63
     * Get an Object Handler
64
     *
65
     * @param string $name name of handler to load
66
     *
67
     * @return bool|\XoopsObjectHandler|\XoopsPersistableObjectHandler
68
     */
69
    public function getHandler($name)
70
    {
71
        $ret = false;
0 ignored issues
show
Unused Code introduced by
The assignment to $ret is dead and can be removed.
Loading history...
72
73
        $class = __NAMESPACE__ . '\\' . \ucfirst($name) . 'Handler';
74
        if (!\class_exists($class)) {
75
            throw new \RuntimeException("Class '$class' not found");
76
        }
77
        /** @var \XoopsMySQLDatabase $db */
78
        $db     = \XoopsDatabaseFactory::getDatabaseConnection();
79
        $helper = self::getInstance();
80
        $ret    = new $class($db, $helper);
81
        $this->addLog("Getting handler '{$name}'");
82
        return $ret;
83
    }
84
}
85