PHP Classes

File: config/paths.php

Recommend this page to a friend!
  Classes of Michael Beck   XOOPS PHP About Page   config/paths.php   Download  
File: config/paths.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: XOOPS PHP About Page
Show the about page in a site managed using XOOPS
Author: By
Last change:
Date: 2 years ago
Size: 1,182 bytes
 

Contents

Class file image Download
<?php

/**
 * @return object
 */

//function getPaths()
//{
$moduleDirName = basename(dirname(__DIR__));
// $moduleDirNameUpper = mb_strtoupper($moduleDirName);

return (object)[
   
// 'name' => mb_strtoupper($moduleDirName) . ' PathConfigurator',
    // 'paths' => [
   
'dirname' => $moduleDirName,
   
'admin' => XOOPS_ROOT_PATH . '/modules/' . $moduleDirName . '/admin',
   
'modPath' => XOOPS_ROOT_PATH . '/modules/' . $moduleDirName,
   
'modUrl' => XOOPS_URL . '/modules/' . $moduleDirName,
   
'uploadUrl' => XOOPS_UPLOAD_URL . '/' . $moduleDirName,
   
'uploadPath' => XOOPS_UPLOAD_PATH . '/' . $moduleDirName,

   
'uploadPathCategory' => XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/category',
   
'uploadPathScreenshots' => XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/screenshots',
   
// ],
    // 'uploadFolders' => [
    // XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
    // XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/category',
    // XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/screenshots',
    // //XOOPS_UPLOAD_PATH . '/flags'
    // ],
];