관리-도구
편집 파일: extra_functions.php
<?php /** * Load in any user functions * * @copyright Copyright 2003-2022 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: lat9 2022 Jul 07 Modified in v1.5.8-alpha $ */ use Zencart\FileSystem\FileSystem; if (!defined('IS_ADMIN_FLAG')) { die('Illegal Access'); } $extraFuncsMain = (new FileSystem)->listFilesFromDirectoryAlphaSorted(DIR_WS_FUNCTIONS . 'extra_functions/', '~^[^\._].*\.php$~i'); $extraFuncsMain = collect($extraFuncsMain)->map(function ($item, $key) { return DIR_WS_FUNCTIONS . 'extra_functions/' . $item; })->toArray(); $context = (new FileSystem)->isAdminDir(__DIR__) ? 'admin' : 'catalog'; $extraFuncsPlugins = []; foreach ($installedPlugins as $plugin) { $path = DIR_FS_CATALOG . 'zc_plugins/' . $plugin['unique_key'] . '/' . $plugin['version'] . '/' . $context . '/' . DIR_WS_FUNCTIONS . 'extra_functions/'; $efPluginFile = (new FileSystem)->listFilesFromDirectoryAlphaSorted($path, '~^[^\._].*\.php$~i'); $efPluginFile = collect($efPluginFile)->map(function ($item, $key) use ($path) { return $path . $item; })->toArray(); $extraFuncsPlugins = array_merge($extraFuncsPlugins, $efPluginFile); } $extraFuncsFiles = array_merge($extraFuncsPlugins, $extraFuncsMain); foreach ($extraFuncsFiles as $file) { if (!file_exists($file)) { continue; } include($file); } unset($extraFuncsMain, $extraFuncsPlugins, $extraFuncsFiles, $efPluginFile, $file);