XoopsModules25x /
xlanguage
| 1 | <?php |
||
| 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 or later (http://www.gnu.org/licenses/gpl-2.0.html) |
||
| 15 | * @package |
||
| 16 | * @since |
||
| 17 | * @author XOOPS Development Team |
||
| 18 | */ |
||
| 19 | |||
| 20 | //require_once __DIR__ . '/setup.php'; |
||
| 21 | |||
| 22 | use XoopsModules\Xlanguage; |
||
| 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_xlanguage(\XoopsModule $module) |
||
| 31 | { |
||
| 32 | require_once dirname(__DIR__) . '/preloads/autoloader.php'; |
||
| 33 | /** @var Xlanguage\Utility $utility */ |
||
| 34 | $utility = new \XoopsModules\Xlanguage\Utility(); |
||
| 35 | $xoopsSuccess = $utility::checkVerXoops($module); |
||
| 36 | $phpSuccess = $utility::checkVerPhp($module); |
||
| 37 | |||
| 38 | if (false !== $xoopsSuccess && false !== $phpSuccess) { |
||
| 39 | $moduleTables = &$module->getInfo('tables'); |
||
| 40 | foreach ($moduleTables 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_xlanguage(\XoopsModule $module) |
||
|
0 ignored issues
–
show
|
|||
| 55 | { |
||
| 56 | require_once dirname(dirname(dirname(__DIR__))) . '/mainfile.php'; |
||
| 57 | require_once dirname(__DIR__) . '/config/config.php'; |
||
| 58 | |||
| 59 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 60 | /** @var Xlanguage\Helper $helper */ |
||
| 61 | $helper = Xlanguage\Helper::getInstance(); |
||
| 62 | $utility = new Xlanguage\Utility(); |
||
| 63 | $configurator = new Xlanguage\Common\Configurator(); |
||
| 64 | // Load language files |
||
| 65 | $helper->loadLanguage('admin'); |
||
| 66 | $helper->loadLanguage('modinfo'); |
||
| 67 | |||
| 68 | // default Permission Settings ---------------------- |
||
| 69 | global $xoopsModule; |
||
| 70 | $moduleId = $xoopsModule->getVar('mid'); |
||
| 71 | // $moduleId2 = $helper->getModule()->mid(); |
||
| 72 | /** @var \XoopsGroupPermHandler $grouppermHandler */ |
||
| 73 | $grouppermHandler = xoops_getHandler('groupperm'); |
||
| 74 | // access rights ------------------------------------------ |
||
| 75 | $grouppermHandler->addRight($moduleDirName . '_approve', 1, (int)XOOPS_GROUP_ADMIN, $moduleId); |
||
| 76 | $grouppermHandler->addRight($moduleDirName . '_submit', 1, (int)XOOPS_GROUP_ADMIN, $moduleId); |
||
| 77 | $grouppermHandler->addRight($moduleDirName . '_view', 1, (int)XOOPS_GROUP_ADMIN, $moduleId); |
||
| 78 | $grouppermHandler->addRight($moduleDirName . '_view', 1, (int)XOOPS_GROUP_USERS, $moduleId); |
||
| 79 | $grouppermHandler->addRight($moduleDirName . '_view', 1, (int)XOOPS_GROUP_ANONYMOUS, $moduleId); |
||
| 80 | |||
| 81 | // --- CREATE FOLDERS --------------- |
||
| 82 | if (count($configurator->uploadFolders) > 0) { |
||
| 83 | // foreach (array_keys($GLOBALS['uploadFolders']) as $i) { |
||
| 84 | foreach (array_keys($configurator->uploadFolders) as $i) { |
||
| 85 | $utility::createFolder($configurator->uploadFolders[$i]); |
||
| 86 | } |
||
| 87 | } |
||
| 88 | |||
| 89 | // --- COPY blank.png FILES --------------- |
||
| 90 | if (count($configurator->copyBlankFiles) > 0) { |
||
| 91 | $file = dirname(__DIR__) . '/assets/images/blank.png'; |
||
| 92 | foreach (array_keys($configurator->copyBlankFiles) as $i) { |
||
| 93 | $dest = $configurator->copyBlankFiles[$i] . '/blank.png'; |
||
| 94 | $utility::copyFile($file, $dest); |
||
| 95 | } |
||
| 96 | } |
||
| 97 | //delete .html entries from the tpl table |
||
| 98 | $sql = 'DELETE FROM ' . $GLOBALS['xoopsDB']->prefix('tplfile') . " WHERE `tpl_module` = '" . $xoopsModule->getVar('dirname', 'n') . "' AND `tpl_file` LIKE '%.html%'"; |
||
| 99 | $GLOBALS['xoopsDB']->queryF($sql); |
||
| 100 | |||
| 101 | return true; |
||
| 102 | } |
||
| 103 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.