File: /home/nyiet8349bzl/Backup/sbc_back/homedir/public_html/old-myadmin/ImageGallery/index.php
<?php
require_once '../../library/config.php';
require_once '../library/functions.php';
$_SESSION['login_return_url'] = $_SERVER['REQUEST_URI'];
checkUser();
$view = (isset($_GET['view']) && $_GET['view'] != '') ? $_GET['view'] : '';
switch ($view) {
case 'list' :
$content = 'list.php';
$pageTitle = 'Admin Control Panel - Image Gallery View';
break;
case 'add' :
$content = 'add.php';
$pageTitle = 'Admin Control Panel - Add Image Gallery';
break;
case 'modify' :
$content = 'modify.php';
$pageTitle = 'Admin Control Panel - Modify Image Gallery';
break;
case 'detail' :
$content = 'detail.php';
$pageTitle = 'Admin Control Panel - View Image Gallery Details';
break;
default :
$content = 'list.php';
$pageTitle = 'Admin Control Panel - View Image Gallery';
}
$script = array('ImageGallery.js');
require_once '../include/bkadmin.php';
?>