installation.php
来自「ProjectPier 源码 很好的项目管理程序」· PHP 代码 · 共 28 行
PHP
28 行
<?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 + =
减小字号Ctrl + -
显示快捷键?