<?php
/*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @copyright XOOPS Project https://xoops.org/
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
* @package
* @since
* @author XOOPS Development Team
*/
$moduleDirName = \basename(\dirname(__DIR__));
$moduleDirNameUpper = \mb_strtoupper($moduleDirName);
\xoops_loadLanguage('common', $moduleDirName);
return (object)[
'name' => \mb_strtoupper($moduleDirName) . ' ModuleConfigurator',
'paths' => [
'dirname' => $moduleDirName,
'admin' => XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/admin',
'modPath' => XOOPS_ROOT_PATH . '/modules/' . $moduleDirName,
'modUrl' => XOOPS_URL . '/modules/' . $moduleDirName,
'uploadPath' => XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
'uploadUrl' => XOOPS_UPLOAD_URL . '/' . $moduleDirName,
],
'uploadFolders' => [
XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/modules',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/tables',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/repository',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/files',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/temp',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/devtools',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/devtools/fq',
],
'copyBlankFiles' => [
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/modules',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/tables',
],
'copyEmptyFiles' => [
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/modules',
],
'copyTestFolders' => [
[
XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/testdata/images',
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images',
],
// [
// XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/testdata/thumbs',
// XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/thumbs',
// ],
],
'templateFolders' => [
'/templates/',
// '/templates/blocks/',
// '/templates/admin/'
],
'oldFiles' => [
'/class/request.php',
'/class/registry.php',
'/class/utilities.php',
'/class/util.php',
// '/include/constants.php',
// '/include/functions.php',
'/ajaxrating.txt',
],
'oldFolders' => [
'/images',
'/css',
'/js',
'/tcpdf',
],
'renameTables' => [// 'XX_archive' => 'ZZZZ_archive',
],
'moduleStats' => [
// 'totalcategories' => $helper->getHandler('Category')->getCategoriesCount(-1),
// 'totalitems' => $helper->getHandler('Item')->getItemsCount(),
// 'totalsubmitted' => $helper->getHandler('Item')->getItemsCount(-1, [Constants::PUBLISHER_STATUS_SUBMITTED]),
],
'modCopyright' => "<a href='https://xoops.org' title='XOOPS Project' target='_blank'>
<img src='" . XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/assets/images/logo/logoModule.png' . "' alt='XOOPS Project'></a>",
];
|