관리-도구
편집 파일: ScriptedInstallerFactory.php
<?php /** * @copyright Copyright 2003-2020 Zen Cart Development Team * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: Zcwilt 2020 May 20 New in v1.5.7 $ */ namespace Zencart\PluginSupport; class ScriptedInstallerFactory { public function __construct($dbConn, $errorContainer) { $this->dbConn = $dbConn; $this->errorContainer = $errorContainer; } public function make($pluginDir) { require_once $pluginDir . '/Installer/ScriptedInstaller.php'; $scriptedInstaller = new \ScriptedInstaller($this->dbConn, $this->errorContainer); return $scriptedInstaller; } }