PHP Classes

File: config/paths.php

Recommend this page to a friend!
  Classes of Goffy G   wgGallery   config/paths.php   Download  
File: config/paths.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: wgGallery
Image gallery module for XOOPS CMS
Author: By
Last change:
Date: 3 years ago
Size: 909 bytes
 

Contents

Class file image Download
<?php

/**
 * @return object
 */
$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,
       
'uploadPath' => XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
       
'uploadUrl' => XOOPS_UPLOAD_URL . '/' . $moduleDirName,
    ],
   
'uploadFolders' => [
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName,
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/category',
       
XOOPS_UPLOAD_PATH . '/' . $moduleDirName . '/screenshots',
       
//XOOPS_UPLOAD_PATH . '/flags'
   
],
];