PHP Classes

File: include/common.php

Recommend this page to a friend!
  Classes of Goffy G   XOOPS Modules Builder   include/common.php   Download  
File: include/common.php
Role: Example script
Content type: text/plain
Description: Example script
Class: XOOPS Modules Builder
Generate new modules for the XOOPS CMS
Author: By
Last change:
Date: 3 years ago
Size: 3,067 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.
 */

/**
 * modulebuilder module.
 *
 * @copyright XOOPS Project (https://xoops.org)
 * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
 *
 * @since 2.5.0
 *
 * @author Txmod Xoops http://www.txmodxoops.org
 *
 */

use XoopsModules\Modulebuilder;
include \
dirname(__DIR__) . '/preloads/autoloader.php';

$moduleDirName = \basename(\dirname(__DIR__));
$moduleDirNameUpper = \mb_strtoupper($moduleDirName); //$capsDirName

\defined('XOOPS_ROOT_PATH') || exit('Restricted access');
$dirname = $GLOBALS['xoopsModule']->getVar('dirname');
// Root Frameworks icons 32x32 directory
if (!\defined('XOOPS_ICONS32_PATH')) {
    \
define('XOOPS_ICONS32_PATH', XOOPS_ROOT_PATH . '/Frameworks/moduleclasses/icons/32');
}
if (!\
defined('XOOPS_ICONS32_URL')) {
    \
define('XOOPS_ICONS32_URL', XOOPS_URL . '/Frameworks/moduleclasses/icons/32');
}
// Local Directories
\define('TDMC_PATH', XOOPS_ROOT_PATH . '/modules/' . $dirname);
\
define('TDMC_URL', XOOPS_URL . '/modules/' . $dirname);
\
define('TDMC_CLASS_PATH', TDMC_PATH . '/class');
\
define('TDMC_CLASS_URL', TDMC_URL . '/class');
\
define('TDMC_DOCS_PATH', TDMC_PATH . '/docs');
\
define('TDMC_DOCS_URL', TDMC_URL . '/docs');
\
define('TDMC_FONTS_PATH', TDMC_PATH . '/assets/fonts');
\
define('TDMC_FONTS_URL', TDMC_URL . '/assets/fonts');
\
define('TDMC_IMAGE_PATH', TDMC_PATH . '/assets/images');
\
define('TDMC_IMAGE_URL', TDMC_URL . '/assets/images');
\
define('TDMC_IMAGES_LOGOS_PATH', TDMC_PATH . '/assets/images/logos');
\
define('TDMC_IMAGES_LOGOS_URL', TDMC_URL . '/assets/images/logos');
\
define('TDMC_ICONS_PATH', TDMC_PATH . '/assets/icons');
\
define('TDMC_ICONS_URL', TDMC_URL . '/assets/icons');
\
define($moduleDirNameUpper . '_AUTHOR_LOGOIMG', TDMC_URL . '/assets/images/logoModule.png');
// Uploads Directories
\define('TDMC_UPLOAD_PATH', XOOPS_UPLOAD_PATH . '/' . $dirname);
\
define('TDMC_UPLOAD_URL', XOOPS_UPLOAD_URL . '/' . $dirname);
\
define('TDMC_UPLOAD_REPOSITORY_PATH', TDMC_UPLOAD_PATH . '/repository');
\
define('TDMC_UPLOAD_REPOSITORY_URL', TDMC_UPLOAD_URL . '/repository');
\
define('TDMC_UPLOAD_IMGMOD_PATH', TDMC_UPLOAD_PATH . '/images/modules');
\
define('TDMC_UPLOAD_IMGMOD_URL', TDMC_UPLOAD_URL . '/images/modules');
\
define('TDMC_UPLOAD_IMGTAB_PATH', TDMC_UPLOAD_PATH . '/images/tables');
\
define('TDMC_UPLOAD_IMGTAB_URL', TDMC_UPLOAD_URL . '/images/tables');
\
define('TDMC_UPLOAD_TEMP_PATH', TDMC_UPLOAD_PATH . '/temp');
\
define('TDMC_UPLOAD_FILES_PATH', TDMC_UPLOAD_PATH . '/files');
// Xoops Request
include_once XOOPS_ROOT_PATH . '/class/xoopsrequest.php';
//include_once TDMC_PATH . '/include/functions.php';