XCL Web Application Platform
2.5.0
The XoopsCube Legacy Project
📘
Loading...
Searching...
No Matches
install_createDB.inc.php
1
<?php
10
11
include_once
'../mainfile.php'
;
12
include_once
'./class/dbmanager.php'
;
13
14
$dbm =
new
db_manager
();
15
16
if
( ! $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();
db_manager
Definition
dbmanager.php:19
html
install
wizards
install_createDB.inc.php
Generated by
1.13.2