PHP Classes

File: include/config.php

Recommend this page to a friend!
  Packages of Michael Beck   XOOPS Publisher Module   include/config.php   Download  
File: include/config.php
Role: Example script
Content type: text/plain
Description: Example script
Class: XOOPS Publisher Module
Publish static HTML content and article with XOOPS
Author: By
Last change: Merge branch 'master' of https://github.com/XoopsModules25x/publisher
updates
Merge branch 'master' of https://github.com/XoopsModules25x/publisher
streamline namespaces
Merge branch 'master' into master
Missing strict types declaration
Merge branch 'master' of https://github.com/XoopsModules25x/publisher
Date: 7 months ago
Size: 4,000 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);
/*
 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.
*/

/**
 * Publisher module for XOOPS
 *
 * @copyright XOOPS Project (https://xoops.org)
 * @license GPL 2.0 or later
 * @since 1.03
 * @author XOOPS Development Team - ( https://xoops.org )
 */

use XoopsModules\Publisher\{CategoryHandler,
   
Constants,
   
Helper,
   
ItemHandler
};
use
Xmf\Module\Admin;

require
__DIR__ . '/common.php';

/** @return object */
$moduleDirName = \basename(\dirname(__DIR__));
$moduleDirNameUpper = mb_strtoupper($moduleDirName);
$helper = Helper::getInstance();

/** @var CategoryHandler $helper ->getHandler('Category') */
/** @var ItemHandler $helper ->getHandler('Item') */
return (object)[
   
'name' => $moduleDirNameUpper . ' 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 . '/content',
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images',
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/category',
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/thumbnails',
    ],
   
'copyBlankFiles' => [
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/category',
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/images/thumbnails',
    ],

   
'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]),
       
'totalpublished' => $helper->getHandler('Item')->getItemsCount(-1, [Constants::PUBLISHER_STATUS_PUBLISHED]),
       
'totaloffline' => $helper->getHandler('Item')->getItemsCount(-1, [Constants::PUBLISHER_STATUS_OFFLINE]),
       
'totalrejected' => $helper->getHandler('Item')->getItemsCount(-1, [Constants::PUBLISHER_STATUS_REJECTED]),
    ],
   
'modCopyright' => "<a href='https://xoops.org' title='XOOPS Project' target='_blank'>
                     <img src='"
. Admin::iconUrl('xoopsmicrobutton.gif') . "' alt='XOOPS Project'></a>",
];