xoops_module_pre_install_contact()   A
last analyzed

Complexity

Conditions 5
Paths 4

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 5
eloc 9
nc 4
nop 1
dl 0
loc 16
rs 9.6111
c 1
b 0
f 0
1
<?php declare(strict_types=1);
2
/*
3
 * You may not change or alter any portion of this comment or credits
4
 * of supporting developers from this source code or any supporting source code
5
 * which is considered copyrighted (c) material of the original comment or credit authors.
6
 *
7
 * This program is distributed in the hope that it will be useful,
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
 */
11
12
/**
13
 * @copyright    XOOPS Project (https://xoops.org)
14
 * @license      GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
15
 * @author       XOOPS Development Team
16
 */
17
18
use XoopsModules\Contact;
19
use XoopsModules\Contact\Helper;
20
use XoopsModules\Contact\Utility;
21
22
//require_once __DIR__ . '/setup.php';
23
24
/**
25
 * Prepares system prior to attempting to install module
26
 * @param \XoopsModule $module {@link XoopsModule}
27
 *
28
 * @return bool true if ready to install, false if not
29
 */
30
function xoops_module_pre_install_contact(\XoopsModule $module)
31
{
32
    $moduleDirName = \basename(\dirname(__DIR__));
0 ignored issues
show
Unused Code introduced by
The assignment to $moduleDirName is dead and can be removed.
Loading history...
33
    $utility       = new Utility();
34
35
    $xoopsSuccess = $utility::checkVerXoops($module);
36
    $phpSuccess   = $utility::checkVerPhp($module);
37
38
    if ($xoopsSuccess && $phpSuccess) {
39
        $mod_tables = &$module->getInfo('tables');
40
        foreach ($mod_tables as $table) {
41
            $GLOBALS['xoopsDB']->queryF('DROP TABLE IF EXISTS ' . $GLOBALS['xoopsDB']->prefix($table) . ';');
42
        }
43
    }
44
45
    return $xoopsSuccess && $phpSuccess;
46
}
47
48
/**
49
 * Performs tasks required during installation of the module
50
 * @param \XoopsModule $module {@link XoopsModule}
51
 *
52
 * @return bool true if installation successful, false if not
53
 */
54
function xoops_module_install_contact(\XoopsModule $module)
55
{
56
    require \dirname(__DIR__, 3) . '/mainfile.php';
57
58
    $moduleDirName = \basename(\dirname(__DIR__));
59
60
    $helper       = Helper::getInstance();
61
    $utility      = new Utility();
62
    $configurator = new Contact\Common\Configurator();
63
    // Load language files
64
    $helper->loadLanguage('admin');
65
    $helper->loadLanguage('modinfo');
66
67
    // default Permission Settings ----------------------
68
    //    global $xoopsModule;
69
    $moduleId = $module->getVar('mid');
70
    //    $moduleId2    = $helper->getModule()->mid();
71
    /** @var \XoopsGroupPermHandler $grouppermHandler */
72
    $grouppermHandler = xoops_getHandler('groupperm');
73
    // access rights ------------------------------------------
74
    $grouppermHandler->addRight($moduleDirName . '_approve', 1, XOOPS_GROUP_ADMIN, $moduleId);
0 ignored issues
show
Bug introduced by
XOOPS_GROUP_ADMIN of type string is incompatible with the type integer expected by parameter $gperm_groupid of XoopsGroupPermHandler::addRight(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

74
    $grouppermHandler->addRight($moduleDirName . '_approve', 1, /** @scrutinizer ignore-type */ XOOPS_GROUP_ADMIN, $moduleId);
Loading history...
75
    $grouppermHandler->addRight($moduleDirName . '_submit', 1, XOOPS_GROUP_ADMIN, $moduleId);
76
    $grouppermHandler->addRight($moduleDirName . '_view', 1, XOOPS_GROUP_ADMIN, $moduleId);
77
    $grouppermHandler->addRight($moduleDirName . '_view', 1, XOOPS_GROUP_USERS, $moduleId);
78
    $grouppermHandler->addRight($moduleDirName . '_view', 1, XOOPS_GROUP_ANONYMOUS, $moduleId);
79
80
    //  ---  CREATE FOLDERS ---------------
81
    if (count($configurator->uploadFolders) > 0) {
82
        //    foreach (array_keys($GLOBALS['uploadFolders']) as $i) {
83
        foreach (array_keys($configurator->uploadFolders) as $i) {
84
            $utility::createFolder($configurator->uploadFolders[$i]);
85
        }
86
    }
87
88
    //  ---  COPY blank.png FILES ---------------
89
    if (count($configurator->copyBlankFiles) > 0) {
90
        $file = \dirname(__DIR__) . '/assets/images/blank.png';
91
        foreach (array_keys($configurator->copyBlankFiles) as $i) {
92
            $dest = $configurator->copyBlankFiles[$i] . '/blank.png';
93
            $utility::copyFile($file, $dest);
94
        }
95
    }
96
    //delete .html entries from the tpl table
97
    //    $sql = 'DELETE FROM ' . $GLOBALS['xoopsDB']->prefix('tplfile') . " WHERE `tpl_module` = '" . $xoopsModule->getVar('dirname', 'n') . "' AND `tpl_file` LIKE '%.html%'";
98
    //    $GLOBALS['xoopsDB']->queryF($sql);
99
100
    return true;
101
}
102