XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
install_dbconfirm.inc.php
1<?php
10
11include_once './class/settingmanager.php';
12
13$sm = new setting_manager( true );
14
15$content = $sm->checkData();
16
17if ( ! empty( $content ) ) {
18 $wizard->setTitle( _INSTALL_L93 );
19 $wizard->setContent( $content . $sm->editform() );
20 $wizard->setNext( [ 'dbconfirm', _INSTALL_L91 ] );
21} else {
22 $wizard->setContent( $sm->confirmForm() );
23}
24
25$wizard->render();