⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 initsystem.php

📁 Zen Cart是真正的电子商务艺术
💻 PHP
字号:
<?php/** * initsystem.php * * loads and interprets the autoloader files * see {@link  http://www.zen-cart.com/wiki/index.php/Developers_API_Tutorials#InitSystem wikitutorials} for more details. * * @package initSystem * @copyright Copyright 2003-2008 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: initsystem.php 5705 2007-01-27 19:01:07Z wilt $ */if (!defined('IS_ADMIN_FLAG')){  die('Illegal Access');}$base_dir = DIR_WS_INCLUDES . 'auto_loaders/';if (file_exists(DIR_WS_INCLUDES . 'auto_loaders/overrides/' . $loader_file)) {  $base_dir = DIR_WS_INCLUDES . 'auto_loaders/overrides/';}/** * load the default application_top autoloader file. */include($base_dir . $loader_file);if ($loader_dir = dir(DIR_WS_INCLUDES . 'auto_loaders')) {  while ($loader_file = $loader_dir->read()) {    $matchPattern = '/^' . $loaderPrefix . '\./';    if ((preg_match($matchPattern, $loader_file) > 0) && (preg_match('/\.php$/', $loader_file) > 0)) {      if ($loader_file != $loaderPrefix . '.core.php') {        $base_dir = DIR_WS_INCLUDES . 'auto_loaders/';        if (file_exists(DIR_WS_INCLUDES . 'auto_loaders/overrides/' . $loader_file)) {          $base_dir = DIR_WS_INCLUDES . 'auto_loaders/overrides/';        }        /**         * load the application_top autoloader files.         */        include($base_dir . $loader_file);      }    }  }  $loader_dir->close();  unset($loader_dir, $loader_file);}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -