Cheetah
index.php
Go to the documentation of this file.
1 <?php
7 require_once('./../inc/header.inc.php');
8 require_once(CH_DIRECTORY_PATH_ROOT . 'upgrade/classes/ChWsbUpgradeController.php');
9 require_once(CH_DIRECTORY_PATH_ROOT . 'upgrade/classes/ChWsbUpgradeUtil.php');
10 require_once(CH_DIRECTORY_PATH_ROOT . 'upgrade/classes/ChWsbUpgradeDb.php');
11 
12 define ('CH_UPGRADE_DIR_UPGRADES', CH_DIRECTORY_PATH_ROOT . 'upgrade/files/');
13 define ('CH_UPGRADE_DIR_TEMPLATES', CH_DIRECTORY_PATH_ROOT . 'upgrade/templates/');
14 
15 $sFolder = $_REQUEST['folder'];
16 
17 include (CH_UPGRADE_DIR_TEMPLATES . '_header.php');
18 
20 
21 if (!$sFolder)
22  $oController->showAvailableUpgrades();
23 else
24  $oController->runUpgrade($sFolder);
25 
26 include (CH_UPGRADE_DIR_TEMPLATES . '_footer.php');
ChWsbUpgradeController
Definition: ChWsbUpgradeController.php:9
CH_UPGRADE_DIR_TEMPLATES
const CH_UPGRADE_DIR_TEMPLATES
Definition: index.php:13
php
$sFolder
$sFolder
Definition: index.php:15
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
$oController
$oController
Definition: index.php:19