33 lines
1.5 KiB
PHP
Executable File
33 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The html template file of step3 method of install module of XXB.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
|
|
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package install
|
|
* @version $Id: step3.html.php 4029 2016-08-26 06:50:41Z liugang $
|
|
* @link https://xuanim.com
|
|
*/
|
|
include '../../common/view/header.lite.html.php';
|
|
?>
|
|
<div class='container'>
|
|
<div class='modal-dialog'>
|
|
<div class='modal-content'>
|
|
<?php if(isset($error)):?>
|
|
<div class='modal-header'><strong><?php echo $lang->install->error;?></strong></div>
|
|
<div class='modal-body'><div class='alert alert-danger'><?php echo $error;?></div></div>
|
|
<div class='modal-footer'><?php echo html::backButton($lang->install->pre, 'btn btn-primary');?></div>
|
|
<?php else: ?>
|
|
<div class='modal-header'><strong><?php echo $lang->install->saveConfig;?></strong></div>
|
|
<div class='modal-body'>
|
|
<div class='form-group'><?php echo html::textArea('config', $result->content, "rows='10' class='form-control small'");?></div>
|
|
<div class='alert alert-warning'><?php printf($lang->install->save2File, $result->myPHP);?></div>
|
|
</div>
|
|
<div class='modal-footer'><?php echo html::a(inlink('step4'), $lang->install->next, "class='btn btn-primary'");?></div>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include './footer.html.php';?>
|