XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
install_createDB.inc.php
1<?php
10
11include_once '../mainfile.php';
12include_once './class/dbmanager.php';
13
14$dbm = new db_manager();
15
16if ( ! $dbm->createDB() ) {
17 // Could not create database. Contact the server administrator for details
18 $wizard->setContent( '<div class="confirmError">' . _INSTALL_L31 . '</div>' );
19 $wizard->setNext( [ 'checkDB', _INSTALL_L104 ] );
20 $wizard->setBack( [ 'start', _INSTALL_L103 ] );
21} else {
22 // Database %s created
23 $wizard->setContent( '<div class="confirmOk">' . sprintf( _INSTALL_L43, XOOPS_DB_NAME ) . '</div>' );
24}
25
26$wizard->render();