PHP Classes

File: htdocs/install/page_moduleinstaller.php

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/install/page_moduleinstaller.php   Download  
File: htdocs/install/page_moduleinstaller.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: copyright update
updated install, Bootstrap 5.3.3
short array
PER-CS formatting
Merge pull request #1239 from Andrew-Staves-Activ/notificationhandler_subscribe_success

Merge pull request #1120 from GregMage/formcaptcha_Option2

Formcaptcha option2, closes #1119 closes #1121
Small patches

Two irritants that were magnified by multiple install tests.
- show all blocks by default in blocks admin
- allow deselecting a module during XOOPS install
Merge branch 'feature/php8_templates' of https://github.com/mambax7/XoopsCore25 into feature/php8_templates

# Conflicts:
# htdocs/themes/xswatch4/modules/publisher/publisher_item.tpl
Merge pull request #864 from geekwright/issue848

Add all selected users in XoopsFormSelectUser
Merge xswatch4
Date: 2 months ago
Size: 7,035 bytes
 

Contents

Class file image Download
<?php
/**
 * See the enclosed file license.txt for licensing information.
 * If you did not receive this file, get it at https://www.gnu.org/licenses/gpl-2.0.html
 *
 * @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
 * @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
 * @package installer
 * @since 2.3.0
 * @author Haruki Setoyama <haruki@planewave.org>
 * @author Kazumi Ono <webmaster@myweb.ne.jp>
 * @author Skalpa Keo <skalpa@xoops.org>
 * @author Taiwen Jiang <phppp@users.sourceforge.net>
 * @author DuGris (aka L. JEN) <dugris@frxoops.org>
 **/

$xoopsOption['checkadmin'] = true;
$xoopsOption['hascommon'] = true;
require_once
__DIR__ . '/include/common.inc.php';
defined('XOOPS_INSTALL') || die('XOOPS Installation wizard die');

$adminLangFile = __DIR__ . "/../language/{$wizard->language}/global.php";
if (
file_exists($adminLangFile)) {
    include_once
$adminLangFile;
} else {
    include_once
__DIR__ . '/../language/english/global.php';
}

$adminLangFile = __DIR__ . "/../modules/system/language/{$wizard->language}/admin.php";
if (
file_exists($adminLangFile)) {
    include_once
$adminLangFile;
} else {
    include_once
__DIR__ . '/../modules/system/language/english/admin.php';
}

$adminPrefsLangFile = __DIR__ . "/../modules/system/language/{$wizard->language}/admin/modulesadmin.php";
if (
file_exists($adminPrefsLangFile)) {
    include_once
$adminPrefsLangFile;
} else {
    include_once
__DIR__ . '/../modules/system/language/english/admin/modulesadmin.php';
}

require_once
__DIR__ . '/../class/xoopsformloader.php';
require_once
__DIR__ . '/../class/xoopslists.php';

$pageHasForm = true;
$pageHasHelp = false;

if (
$_SERVER['REQUEST_METHOD'] === 'POST') {
    include_once
__DIR__ . '/../class/xoopsblock.php';
    include_once
__DIR__ . '/../kernel/module.php';
    include_once
__DIR__ . '/../include/cp_functions.php';
    include_once
__DIR__ . '/../include/version.php';
    include_once
__DIR__ . '/include/modulesadmin.php';

   
/** @var XoopsConfigHandler $config_handler */
   
$config_handler = xoops_getHandler('config');
   
$xoopsConfig = $config_handler->getConfigsByCat(XOOPS_CONF);

   
$msgs = [];
    if (isset(
$_REQUEST['modules']) && \is_array($_REQUEST['modules'])) {
        foreach (
$_REQUEST['modules'] as $dirname => $installmod) {
            if (
$installmod) {
               
$msgs[] = xoops_module_install($dirname);
            }
        }
    }

   
$pageHasForm = false;

    if (
count($msgs) > 0) {
       
$content = '<div class="alert alert-success"><span class="fa-solid fa-check text-success"></span> '
           
. INSTALLED_MODULES . '</div><div class="well"><ul class="list-unstyled">';
        foreach (
$msgs as $msg) {
           
$noAnchors = preg_replace(['"<a (.*?)>"', '"</a>"'], ['', ''], $msg);
           
$content .= "<li>{$noAnchors}</li>";
        }
       
$content .= '</ul></div>';
    } else {
       
$content = '<div class="alert alert-info"><span class="fa-solid fa-circle-info text-info"></span> ' . NO_INSTALLED_MODULES . '</div>';
    }

   
// Flush cache files for cpanel GUIs
   
xoops_load('cpanel', 'system');
   
XoopsSystemCpanel::flush();

   
//Set active modules in cache folder
   
xoops_setActiveModules();
} else {
    if (!isset(
$GLOBALS['xoopsConfig']['language'])) {
       
$GLOBALS['xoopsConfig']['language'] = $_COOKIE['xo_install_lang'];
    }

   
// Get installed modules
    /** @var XoopsModuleHandler $module_handler */
   
$module_handler = xoops_getHandler('module');
   
$installed_mods = $module_handler->getObjects();
   
$listed_mods = [];
    foreach (
$installed_mods as $module) {
       
$listed_mods[] = $module->getVar('dirname');
    }

    include_once
__DIR__ . '/../class/xoopslists.php';
   
$dirlist = XoopsLists::getModulesList();
   
$toinstal = 0;

   
$javascript = '';
   
$content = '';
   
$content .= '<div class="panel panel-info">';
   
$content .= '<div class="panel-heading">' . MODULES_AVAILABLE . '</div>';
   
$content .= '<div class="panel-body">';

    foreach (
$dirlist as $file) {
       
clearstatcache();
        if (!
in_array($file, $listed_mods)) {
           
$value = 0;
           
$style = '';
            if (
in_array($file, $wizard->configs['modules'])) {
               
$value = 1;
               
$style = " style='background-color:#E6EFC2;'";
            }

           
$file = trim($file);
           
$module = $module_handler->create();
            if (!
$module->loadInfo($file, false)) {
                continue;
            }

           
$form = new XoopsThemeForm('', 'modules', 'index.php', 'post');
           
$moduleYN = new XoopsFormCheckBox('', 'modules[' . $module->getInfo('dirname') . ']', $value);
           
$moduleYN->addOption(1, sprintf(INSTALL_THIS_MODULE, $module->getInfo('name')));
           
$moduleYN->setExtra("onclick='selectModule(\"" . $file . "\", this)'");
           
$form->addElement($moduleYN);
/*
            $content .= "<tr id='" . $file . "'" . $style . ">\n";
            $content .= " <td class='img' ><img src='" . XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/' . $module->getInfo('image') . "' alt='" . $module->getInfo('name') . "'/></td>\n";
            $content .= ' <td>';
            $content .= ' ' . $module->getInfo('name') . '&nbsp;' . number_format(round($module->getInfo('version'), 2), 2) . '&nbsp;(' . $module->getInfo('dirname') . ')';
            $content .= ' <br>' . $module->getInfo('description');
            $content .= " </td>\n";
            $content .= " <td class='yesno'>";
            $content .= $moduleYN->render();
            $content .= " </td></tr>\n";
*/
           
$content .= '<div class="row module-row" id="' . $file . '">';
           
$content .= '<div class="col-md-2">';
           
$content .= '<br><img src="' . XOOPS_URL . '/modules/' . $module->getInfo('dirname')
                .
'/' . $module->getInfo('image') . '" alt="' . $module->getInfo('name') . '">';
           
$content .= '</div>';
           
$content .= '<div class="col-md-7">';
           
$content .= '<h3>' . $module->getInfo('name');
           
$content .= ' <small> ' . $module->getInfo('version')
                .
' (' . $module->getInfo('dirname') . ')' . '</small>' . '</h3>';
           
$content .= '<i>' . $module->getInfo('description') . '</i>';
           
$content .= '</div>';
           
$content .= '<div class="col-md-3"><br><br><br>' . $moduleYN->render() . '</div>';
           
$content .= '</div>';

            ++
$toinstal;
        }
    }
   
$content .= '</div></div>';
   
$content .= "<script type='text/javascript'>" . $javascript . '</script>';
    if (
$toinstal == 0) {
       
$pageHasForm = false;
       
$content = '<div class="alert alert-info"><span class="fa-solid fa-circle-info text-info"></span> ' . NO_MODULES_FOUND . '</div>';
    }
}

include
__DIR__ . '/include/install_tpl.php';