PHP Classes

File: include/config.php

Recommend this page to a friend!
  Classes of Goffy G   wgTeams   include/config.php   Download  
File: include/config.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: wgTeams
Module for the XOOPS CMS to present people teams
Author: By
Last change:
Date: 3 years ago
Size: 3,528 bytes
 

Contents

Class file image Download
<?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
 */
function getConfig()
{
   
$moduleDirName = basename(dirname(__DIR__));
// $moduleDirNameUpper = mb_strtoupper($moduleDirName);

   
return (object)[
       
'name' => mb_strtoupper($moduleDirName) . ' Module Configurator',
       
'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 . '/teams',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/members',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/temp',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/teams/images',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/members/images',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/temp',
           
//XOOPS_UPLOAD_PATH . '/flags'
       
],
       
'copyBlankFiles' => [
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/teams/images',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/members/images',
           
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/temp',
           
//XOOPS_UPLOAD_PATH . '/flags'
       
],

       
'copyTestFolders' => [
            [
              
XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/testdata/uploads/teams/images',
              
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/teams/images',
            ],
            [
              
XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/testdata/uploads/members/images',
              
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/members/images',
            ]
        ],

       
'templateFolders' => [
           
'/templates/',
           
'/templates/blocks/',
           
'/templates/admin/',
        ],
       
'oldFiles' => [
           
'/class/request.php',
           
'/class/registry.php',
           
'/class/utilities.php',
           
'/class/util.php',
           
'/include/constants.php',
           
'/ajaxrating.txt',
        ],
       
'oldFolders' => [
           
'/css',
           
'/js',
           
'/tcpdf',
           
'/images',
        ],
       
'renameTables' => [// 'XX_archive' => 'ZZZZ_archive',
       
],
       
'modCopyright' => "<a href='https://xoops.wedega.com' title='XOOPS on Wedega - Webdesign Gabor' target='_blank'>
                     <img src='"
. XOOPS_URL . '/modules/' . $moduleDirName . "/assets/images/wedega.png' alt='XOOPS on Wedega - Webdesign Gabor' /></a>",
    ];
}