📄 installation.php
字号:
<?php /** * Main installation file. Load specific steps and prepare the installation * * @package ScriptInstaller * @subpackage AC installation * @version 1.0 * @http://www.projectpier.org/ */ // Include steps require_once INSTALLER_PATH . '/installation/steps/WelcomeStep.class.php'; require_once INSTALLER_PATH . '/installation/steps/ChecksStep.class.php'; require_once INSTALLER_PATH . '/installation/steps/SystemConfigStep.class.php'; require_once INSTALLER_PATH . '/installation/steps/FinishStep.class.php'; // Construct installer $installer = new ScriptInstaller('ProjectPier installation', 'This wizard will guide you through the ProjectPier installation process'); // Add steps define('ACI_WELCOME', $installer->addStep(new WelcomeStep())); define('ACI_CHECKS', $installer->addStep(new ChecksStep())); define('ACI_SYSTEM_CONFIG', $installer->addStep(new SystemConfigStep())); define('ACI_FINISH', $installer->addStep(new FinishStep())); ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -