__step_controls.php
来自「ProjectPier 源码 很好的项目管理程序」· PHP 代码 · 共 21 行
PHP
21 行
<div id="installerControls"><?php if ($current_step->hasNextStep()) { ?><?php if ($current_step->hasPreviousStep()) { ?> <button type="button" onclick="location.href = '<?php echo $current_step->getPreviousStepUrl() ?>'; return true;">« Back</button> <?php } // if ?> <?php if ($current_step->getNextDisabled()) { ?> <button type="button" onclick="location.href = '<?php echo $current_step->getStepUrl() ?>'; return true;">Try Again »</button> <?php } else { // if ?> <button type="submit">Next »</button> <?php } // if ?> <?php } else { ?><?php if (isset($absolute_url)) { ?> <button type="button" onclick="location.href = '<?php echo $absolute_url ?>'">Finish</button><?php } else {?> <button type="button" onclick="location.href = '../../index.php'">Finish</button><?php } // if ?><?php } // if ?></div>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?