| Current Path : /var/www/cesa.co.za/cceconvenors/ |
| Current File : /var/www/cesa.co.za/cceconvenors/index.php |
<?php
session_start(); // Initialize Session data
ob_start(); // Turn on output buffering
?>
<?php include "ewcfg7.php" ?>
<?php include "ewmysql7.php" ?>
<?php include "phpfn7.php" ?>
<?php include "CCEFacilitatorUsersinfo.php" ?>
<?php include "userfn7.php" ?>
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // Always modified
header("Cache-Control: private, no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
?>
<?php
// Create page object
$default = new cdefault();
$Page = & $default;
// Page init
$default->Page_Init();
// Page main
$default->Page_Main();
?>
<?php
$default->Page_Terminate();
?>
<?php
//
// Page class
//
class cdefault {
// Page ID
var $PageID = 'default';
// Page object name
var $PageObjName = 'default';
// Page name
function PageName() {
return ew_CurrentPage();
}
// Page URL
function PageUrl() {
$PageUrl = ew_CurrentPage() . "?";
return $PageUrl;
}
// Page URLs
var $AddUrl;
var $EditUrl;
var $CopyUrl;
var $DeleteUrl;
var $ViewUrl;
var $ListUrl;
// Export URLs
var $ExportPrintUrl;
var $ExportHtmlUrl;
var $ExportExcelUrl;
var $ExportWordUrl;
var $ExportXmlUrl;
var $ExportCsvUrl;
// Update URLs
var $InlineAddUrl;
var $InlineCopyUrl;
var $InlineEditUrl;
var $GridAddUrl;
var $GridEditUrl;
var $MultiDeleteUrl;
var $MultiUpdateUrl;
// Message
function getMessage() {
return @$_SESSION[EW_SESSION_MESSAGE];
}
function setMessage($v) {
if (@$_SESSION[EW_SESSION_MESSAGE] <> "") { // Append
$_SESSION[EW_SESSION_MESSAGE] .= "<br>" . $v;
} else {
$_SESSION[EW_SESSION_MESSAGE] = $v;
}
}
// Show message
function ShowMessage() {
$sMessage = $this->getMessage();
$this->Message_Showing($sMessage);
if ($sMessage <> "") { // Message in Session, display
echo "<p><span class=\"ewMessage\">" . $sMessage . "</span></p>";
$_SESSION[EW_SESSION_MESSAGE] = ""; // Clear message in Session
}
}
// Validate page request
function IsPageRequest() {
return TRUE;
}
//
// Page class constructor
//
function __construct() {
global $conn, $Language;
// Language object
$Language = new cLanguage();
// User table object (CCEFacilitatorUsers)
$GLOBALS["CCEFacilitatorUsers"] = new cCCEFacilitatorUsers;
// Page ID
if (!defined("EW_PAGE_ID"))
define("EW_PAGE_ID", 'default', TRUE);
// Start timer
$GLOBALS["gsTimer"] = new cTimer();
// Open connection
$conn = ew_Connect();
}
//
// Page_Init
//
function Page_Init() {
global $gsExport, $gsExportFile, $UserProfile, $Language, $Security, $objForm;
global $CCEStAssigExtensionRequests;
// Security
$Security = new cAdvancedSecurity();
// Global Page Loading event (in userfn*.php)
Page_Loading();
// Page Load event
$this->Page_Load();
}
//
// Page_Terminate
//
function Page_Terminate($url = "") {
global $conn;
// Page Unload event
$this->Page_Unload();
// Global Page Unloaded event (in userfn*.php)
Page_Unloaded();
// Close connection
$conn->Close();
// Go to URL if specified
$this->Page_Redirecting($url);
if ($url <> "") {
if (!EW_DEBUG_ENABLED && ob_get_length())
ob_end_clean();
header("Location: " . $url);
}
exit();
}
//
// Page main
//
function Page_Main() {
global $Security, $Language;
if (!$Security->IsLoggedIn())
$Security->AutoLogin();
if ($Security->IsLoggedIn())
$this->Page_Terminate("assigsummary.php"); // Exit and go to default page
if ($Security->IsLoggedIn())
$this->Page_Terminate("cstUnreadMessageslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEAssignmentslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEBookslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCECourseslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEDocCategorieslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEDocumentslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEFacilitatorslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEFeedbacklist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEMessageslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEModuleslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCENoticeBoardlist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEPopupMessageslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEResourceGroupslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEResourceslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEStAssigExtensionRequestslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEStAssigExtensionslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEStudentActivitieslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEStudentAssignmentslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEStudentslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCETemplateslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEUploadslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("CCEWeeklySessionslist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("cstAssigFeedbacklist.php");
if ($Security->IsLoggedIn())
$this->Page_Terminate("cstSubmittedAssignlist.php");
if ($Security->IsLoggedIn()) {
echo $Language->Phrase("NoPermission");
echo "<br><a href=\"logout.php\">" . $Language->Phrase("BackToLogin") . "</a>";
} else {
$this->Page_Terminate("login.php"); // Exit and go to login page
}
}
// Page Load event
function Page_Load() {
//echo "Page Load";
}
// Page Unload event
function Page_Unload() {
//echo "Page Unload";
}
// Page Redirecting event
function Page_Redirecting(&$url) {
// Example:
//$url = "your URL";
$url = "/cceconvenors/" . basename($url);
}
// Message Showing event
function Message_Showing(&$msg) {
// Example:
//$msg = "your new message";
}
}
?>