Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/ccmadmin/
Upload File :
Current File : /var/www/cesa.co.za/ccmadmin/CCMNoticeBoarddelete.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 "CCMNoticeBoardinfo.php" ?>
<?php include "CCMUsersinfo.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
$CCMNoticeBoard_delete = new cCCMNoticeBoard_delete();
$Page =& $CCMNoticeBoard_delete;

// Page init
$CCMNoticeBoard_delete->Page_Init();

// Page main
$CCMNoticeBoard_delete->Page_Main();
?>
<?php include "header.php" ?>
<script type="text/javascript">
<!--

// Create page object
var CCMNoticeBoard_delete = new ew_Page("CCMNoticeBoard_delete");

// page properties
CCMNoticeBoard_delete.PageID = "delete"; // page ID
CCMNoticeBoard_delete.FormID = "fCCMNoticeBoarddelete"; // form ID
var EW_PAGE_ID = CCMNoticeBoard_delete.PageID; // for backward compatibility

// extend page with Form_CustomValidate function
CCMNoticeBoard_delete.Form_CustomValidate =  
 function(fobj) { // DO NOT CHANGE THIS LINE!

 	// Your custom validation code here, return false if invalid. 
 	return true;
 }
<?php if (EW_CLIENT_VALIDATE) { ?>
CCMNoticeBoard_delete.ValidateRequired = true; // uses JavaScript validation
<?php } else { ?>
CCMNoticeBoard_delete.ValidateRequired = false; // no JavaScript validation
<?php } ?>

//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--

// Write your client script here, no need to add script tags.
// To include another .js script, use:
// ew_ClientScriptInclude("my_javascript.js"); 
//-->

</script>
<?php

// Load records for display
if ($rs = $CCMNoticeBoard_delete->LoadRecordset())
	$CCMNoticeBoard_deletelTotalRecs = $rs->RecordCount(); // Get record count
if ($CCMNoticeBoard_deletelTotalRecs <= 0) { // No record found, exit
	if ($rs)
		$rs->Close();
	$CCMNoticeBoard_delete->Page_Terminate("CCMNoticeBoardlist.php"); // Return to list
}
?>
<p><span class="phpmaker"><?php echo $Language->Phrase("Delete") ?>&nbsp;<?php echo $Language->Phrase("TblTypeTABLE") ?><?php echo $CCMNoticeBoard->TableCaption() ?><br><br>
<a href="<?php echo $CCMNoticeBoard->getReturnUrl() ?>"><?php echo $Language->Phrase("GoBack") ?></a></span></p>
<?php
if (EW_DEBUG_ENABLED)
	echo ew_DebugMsg();
$CCMNoticeBoard_delete->ShowMessage();
?>
<form action="<?php echo ew_CurrentPage() ?>" method="post">
<p>
<input type="hidden" name="t" id="t" value="CCMNoticeBoard">
<input type="hidden" name="a_delete" id="a_delete" value="D">
<?php foreach ($CCMNoticeBoard_delete->arRecKeys as $key) { ?>
<input type="hidden" name="key_m[]" id="key_m[]" value="<?php echo ew_HtmlEncode($key) ?>">
<?php } ?>
<table class="ewGrid"><tr><td class="ewGridContent">
<div class="ewGridMiddlePanel">
<table cellspacing="0" class="ewTable ewTableSeparate">
<?php echo $CCMNoticeBoard->TableCustomInnerHtml ?>
	<thead>
	<tr class="ewTableHeader">
		<td valign="top"><?php echo $CCMNoticeBoard->DocumentName->FldCaption() ?></td>
	</tr>
	</thead>
	<tbody>
<?php
$CCMNoticeBoard_delete->lRecCnt = 0;
$i = 0;
while (!$rs->EOF) {
	$CCMNoticeBoard_delete->lRecCnt++;

	// Set row properties
	$CCMNoticeBoard->CssClass = "";
	$CCMNoticeBoard->CssStyle = "";
	$CCMNoticeBoard->RowAttrs = array();
	$CCMNoticeBoard->RowType = EW_ROWTYPE_VIEW; // View

	// Get the field contents
	$CCMNoticeBoard_delete->LoadRowValues($rs);

	// Render row
	$CCMNoticeBoard_delete->RenderRow();
?>
	<tr<?php echo $CCMNoticeBoard->RowAttributes() ?>>
		<td<?php echo $CCMNoticeBoard->DocumentName->CellAttributes() ?>>
<div<?php echo $CCMNoticeBoard->DocumentName->ViewAttributes() ?>><?php echo $CCMNoticeBoard->DocumentName->ListViewValue() ?></div></td>
	</tr>
<?php
	$rs->MoveNext();
}
$rs->Close();
?>
</tbody>
</table>
</div>
</td></tr></table>
<p>
<input type="submit" name="Action" id="Action" value="<?php echo ew_BtnCaption($Language->Phrase("DeleteBtn")) ?>">
</form>
<script language="JavaScript" type="text/javascript">
<!--

// Write your table-specific startup script here
// document.write("page loaded");
//-->

</script>
<?php include "footer.php" ?>
<?php
$CCMNoticeBoard_delete->Page_Terminate();
?>
<?php

//
// Page class
//
class cCCMNoticeBoard_delete {

	// Page ID
	var $PageID = 'delete';

	// Table name
	var $TableName = 'CCMNoticeBoard';

	// Page object name
	var $PageObjName = 'CCMNoticeBoard_delete';

	// Page name
	function PageName() {
		return ew_CurrentPage();
	}

	// Page URL
	function PageUrl() {
		$PageUrl = ew_CurrentPage() . "?";
		global $CCMNoticeBoard;
		if ($CCMNoticeBoard->UseTokenInUrl) $PageUrl .= "t=" . $CCMNoticeBoard->TableVar . "&"; // Add page token
		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() {
		global $objForm, $CCMNoticeBoard;
		if ($CCMNoticeBoard->UseTokenInUrl) {
			if ($objForm)
				return ($CCMNoticeBoard->TableVar == $objForm->GetValue("t"));
			if (@$_GET["t"] <> "")
				return ($CCMNoticeBoard->TableVar == $_GET["t"]);
		} else {
			return TRUE;
		}
	}

	//
	// Page class constructor
	//
	function cCCMNoticeBoard_delete() {
		global $conn, $Language;

		// Language object
		$Language = new cLanguage();

		// Table object (CCMNoticeBoard)
		$GLOBALS["CCMNoticeBoard"] = new cCCMNoticeBoard();

		// Table object (CCMUsers)
		$GLOBALS['CCMUsers'] = new cCCMUsers();

		// Page ID
		if (!defined("EW_PAGE_ID"))
			define("EW_PAGE_ID", 'delete', TRUE);

		// Table name (for backward compatibility)
		if (!defined("EW_TABLE_NAME"))
			define("EW_TABLE_NAME", 'CCMNoticeBoard', 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 $CCMNoticeBoard;

		// Security
		$Security = new cAdvancedSecurity();
		if (!$Security->IsLoggedIn()) $Security->AutoLogin();
		if (!$Security->IsLoggedIn()) {
			$Security->SaveLastUrl();
			$this->Page_Terminate("login.php");
		}
		$Security->TablePermission_Loading();
		$Security->LoadCurrentUserLevel($this->TableName);
		$Security->TablePermission_Loaded();
		if (!$Security->IsLoggedIn()) {
			$Security->SaveLastUrl();
			$this->Page_Terminate("login.php");
		}
		if (!$Security->CanDelete()) {
			$Security->SaveLastUrl();
			$this->Page_Terminate("CCMNoticeBoardlist.php");
		}

		// 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();
	}
	var $lTotalRecs = 0;
	var $lRecCnt;
	var $arRecKeys = array();

	//
	// Page main
	//
	function Page_Main() {
		global $Language, $CCMNoticeBoard;

		// Load key parameters
		$sKey = "";
		$bSingleDelete = TRUE; // Initialize as single delete
		$nKeySelected = 0; // Initialize selected key count
		$sFilter = "";
		if (@$_GET["CCMDocumentID"] <> "") {
			$CCMNoticeBoard->CCMDocumentID->setQueryStringValue($_GET["CCMDocumentID"]);
			if (!is_numeric($CCMNoticeBoard->CCMDocumentID->QueryStringValue))
				$this->Page_Terminate("CCMNoticeBoardlist.php"); // Prevent SQL injection, exit
			$sKey .= $CCMNoticeBoard->CCMDocumentID->QueryStringValue;
		} else {
			$bSingleDelete = FALSE;
		}
		if ($bSingleDelete) {
			$nKeySelected = 1; // Set up key selected count
			$this->arRecKeys[0] = $sKey;
		} else {
			if (isset($_POST["key_m"])) { // Key in form
				$nKeySelected = count($_POST["key_m"]); // Set up key selected count
				$this->arRecKeys = ew_StripSlashes($_POST["key_m"]);
			}
		}
		if ($nKeySelected <= 0)
			$this->Page_Terminate("CCMNoticeBoardlist.php"); // No key specified, return to list

		// Build filter
		foreach ($this->arRecKeys as $sKey) {
			$sFilter .= "(";

			// Set up key field
			$sKeyFld = $sKey;
			if (!is_numeric($sKeyFld))
				$this->Page_Terminate("CCMNoticeBoardlist.php"); // Prevent SQL injection, return to list
			$sFilter .= "`CCMDocumentID`=" . ew_AdjustSql($sKeyFld) . " AND ";
			if (substr($sFilter, -5) == " AND ") $sFilter = substr($sFilter, 0, strlen($sFilter)-5) . ") OR ";
		}
		if (substr($sFilter, -4) == " OR ") $sFilter = substr($sFilter, 0, strlen($sFilter)-4);

		// Set up filter (SQL WHHERE clause) and get return SQL
		// SQL constructor in CCMNoticeBoard class, CCMNoticeBoardinfo.php

		$CCMNoticeBoard->CurrentFilter = $sFilter;

		// Get action
		if (@$_POST["a_delete"] <> "") {
			$CCMNoticeBoard->CurrentAction = $_POST["a_delete"];
		} else {
			$CCMNoticeBoard->CurrentAction = "I"; // Display record
		}
		switch ($CCMNoticeBoard->CurrentAction) {
			case "D": // Delete
				$CCMNoticeBoard->SendEmail = TRUE; // Send email on delete success
				if ($this->DeleteRows()) { // delete rows
					$this->setMessage($Language->Phrase("DeleteSuccess")); // Set up success message
					$this->Page_Terminate($CCMNoticeBoard->getReturnUrl()); // Return to caller
				}
		}
	}

	//
	// Delete records based on current filter
	//
	function DeleteRows() {
		global $conn, $Language, $Security, $CCMNoticeBoard;
		$DeleteRows = TRUE;
		$sWrkFilter = $CCMNoticeBoard->CurrentFilter;

		// Set up filter (SQL WHERE clause) and get return SQL
		// SQL constructor in CCMNoticeBoard class, CCMNoticeBoardinfo.php

		$CCMNoticeBoard->CurrentFilter = $sWrkFilter;
		$sSql = $CCMNoticeBoard->SQL();
		$conn->raiseErrorFn = 'ew_ErrorFn';
		$rs = $conn->Execute($sSql);
		$conn->raiseErrorFn = '';
		if ($rs === FALSE) {
			return FALSE;
		} elseif ($rs->EOF) {
			$this->setMessage($Language->Phrase("NoRecord")); // No record found
			$rs->Close();
			return FALSE;
		}
		$conn->BeginTrans();

		// Clone old rows
		$rsold = ($rs) ? $rs->GetRows() : array();
		if ($rs)
			$rs->Close();

		// Call row deleting event
		if ($DeleteRows) {
			foreach ($rsold as $row) {
				$DeleteRows = $CCMNoticeBoard->Row_Deleting($row);
				if (!$DeleteRows) break;
			}
		}
		if ($DeleteRows) {
			$sKey = "";
			foreach ($rsold as $row) {
				$sThisKey = "";
				if ($sThisKey <> "") $sThisKey .= EW_COMPOSITE_KEY_SEPARATOR;
				$sThisKey .= $row['CCMDocumentID'];
				$conn->raiseErrorFn = 'ew_ErrorFn';
				$DeleteRows = $conn->Execute($CCMNoticeBoard->DeleteSQL($row)); // Delete
				$conn->raiseErrorFn = '';
				if ($DeleteRows === FALSE)
					break;
				if ($sKey <> "") $sKey .= ", ";
				$sKey .= $sThisKey;
			}
		} else {

			// Set up error message
			if ($CCMNoticeBoard->CancelMessage <> "") {
				$this->setMessage($CCMNoticeBoard->CancelMessage);
				$CCMNoticeBoard->CancelMessage = "";
			} else {
				$this->setMessage($Language->Phrase("DeleteCancelled"));
			}
		}
		if ($DeleteRows) {
			$conn->CommitTrans(); // Commit the changes
		} else {
			$conn->RollbackTrans(); // Rollback changes
		}

		// Call Row Deleted event
		if ($DeleteRows) {
			foreach ($rsold as $row) {
				$CCMNoticeBoard->Row_Deleted($row);
			}	
		}
		return $DeleteRows;
	}

	// Load recordset
	function LoadRecordset($offset = -1, $rowcnt = -1) {
		global $conn, $CCMNoticeBoard;

		// Call Recordset Selecting event
		$CCMNoticeBoard->Recordset_Selecting($CCMNoticeBoard->CurrentFilter);

		// Load List page SQL
		$sSql = $CCMNoticeBoard->SelectSQL();
		if ($offset > -1 && $rowcnt > -1)
			$sSql .= " LIMIT $offset, $rowcnt";

		// Load recordset
		$rs = ew_LoadRecordset($sSql);

		// Call Recordset Selected event
		$CCMNoticeBoard->Recordset_Selected($rs);
		return $rs;
	}

	// Load row based on key values
	function LoadRow() {
		global $conn, $Security, $CCMNoticeBoard;
		$sFilter = $CCMNoticeBoard->KeyFilter();

		// Call Row Selecting event
		$CCMNoticeBoard->Row_Selecting($sFilter);

		// Load SQL based on filter
		$CCMNoticeBoard->CurrentFilter = $sFilter;
		$sSql = $CCMNoticeBoard->SQL();
		$res = FALSE;
		$rs = ew_LoadRecordset($sSql);
		if ($rs && !$rs->EOF) {
			$res = TRUE;
			$this->LoadRowValues($rs); // Load row values

			// Call Row Selected event
			$CCMNoticeBoard->Row_Selected($rs);
			$rs->Close();
		}
		return $res;
	}

	// Load row values from recordset
	function LoadRowValues(&$rs) {
		global $conn, $CCMNoticeBoard;
		$CCMNoticeBoard->CCMDocumentID->setDbValue($rs->fields('CCMDocumentID'));
		$CCMNoticeBoard->DocumentName->setDbValue($rs->fields('DocumentName'));
		$CCMNoticeBoard->DocumentFile->Upload->DbValue = $rs->fields('DocumentFile');
		$CCMNoticeBoard->UploadedBy->setDbValue($rs->fields('UploadedBy'));
		$CCMNoticeBoard->DocumentURL->setDbValue($rs->fields('DocumentURL'));
		$CCMNoticeBoard->DocumentThumb->setDbValue($rs->fields('DocumentThumb'));
		$CCMNoticeBoard->Archived->setDbValue($rs->fields('Archived'));
	}

	// Render row values based on field settings
	function RenderRow() {
		global $conn, $Security, $Language, $CCMNoticeBoard;

		// Initialize URLs
		// Call Row_Rendering event

		$CCMNoticeBoard->Row_Rendering();

		// Common render codes for all row types
		// DocumentName

		$CCMNoticeBoard->DocumentName->CellCssStyle = ""; $CCMNoticeBoard->DocumentName->CellCssClass = "";
		$CCMNoticeBoard->DocumentName->CellAttrs = array(); $CCMNoticeBoard->DocumentName->ViewAttrs = array(); $CCMNoticeBoard->DocumentName->EditAttrs = array();
		if ($CCMNoticeBoard->RowType == EW_ROWTYPE_VIEW) { // View row

			// CCMDocumentID
			$CCMNoticeBoard->CCMDocumentID->ViewValue = $CCMNoticeBoard->CCMDocumentID->CurrentValue;
			$CCMNoticeBoard->CCMDocumentID->CssStyle = "";
			$CCMNoticeBoard->CCMDocumentID->CssClass = "";
			$CCMNoticeBoard->CCMDocumentID->ViewCustomAttributes = "";

			// DocumentName
			$CCMNoticeBoard->DocumentName->ViewValue = $CCMNoticeBoard->DocumentName->CurrentValue;
			$CCMNoticeBoard->DocumentName->CssStyle = "";
			$CCMNoticeBoard->DocumentName->CssClass = "";
			$CCMNoticeBoard->DocumentName->ViewCustomAttributes = "";

			// DocumentFile
			if (!ew_Empty($CCMNoticeBoard->DocumentFile->Upload->DbValue)) {
				$CCMNoticeBoard->DocumentFile->ViewValue = $CCMNoticeBoard->DocumentFile->Upload->DbValue;
			} else {
				$CCMNoticeBoard->DocumentFile->ViewValue = "";
			}
			$CCMNoticeBoard->DocumentFile->CssStyle = "";
			$CCMNoticeBoard->DocumentFile->CssClass = "";
			$CCMNoticeBoard->DocumentFile->ViewCustomAttributes = "";

			// UploadedBy
			$CCMNoticeBoard->UploadedBy->ViewValue = $CCMNoticeBoard->UploadedBy->CurrentValue;
			$CCMNoticeBoard->UploadedBy->CssStyle = "";
			$CCMNoticeBoard->UploadedBy->CssClass = "";
			$CCMNoticeBoard->UploadedBy->ViewCustomAttributes = "";

			// DocumentURL
			$CCMNoticeBoard->DocumentURL->ViewValue = $CCMNoticeBoard->DocumentURL->CurrentValue;
			$CCMNoticeBoard->DocumentURL->CssStyle = "";
			$CCMNoticeBoard->DocumentURL->CssClass = "";
			$CCMNoticeBoard->DocumentURL->ViewCustomAttributes = "";

			// DocumentThumb
			if (strval($CCMNoticeBoard->DocumentThumb->CurrentValue) <> "") {
				switch ($CCMNoticeBoard->DocumentThumb->CurrentValue) {
					case "1":
						$CCMNoticeBoard->DocumentThumb->ViewValue = "Yes";
						break;
					case "0":
						$CCMNoticeBoard->DocumentThumb->ViewValue = "No";
						break;
					default:
						$CCMNoticeBoard->DocumentThumb->ViewValue = $CCMNoticeBoard->DocumentThumb->CurrentValue;
				}
			} else {
				$CCMNoticeBoard->DocumentThumb->ViewValue = NULL;
			}
			$CCMNoticeBoard->DocumentThumb->CssStyle = "";
			$CCMNoticeBoard->DocumentThumb->CssClass = "";
			$CCMNoticeBoard->DocumentThumb->ViewCustomAttributes = "";

			// Archived
			$CCMNoticeBoard->Archived->ViewValue = $CCMNoticeBoard->Archived->CurrentValue;
			$CCMNoticeBoard->Archived->CssStyle = "";
			$CCMNoticeBoard->Archived->CssClass = "";
			$CCMNoticeBoard->Archived->ViewCustomAttributes = "";

			// DocumentName
			$CCMNoticeBoard->DocumentName->HrefValue = "";
			$CCMNoticeBoard->DocumentName->TooltipValue = "";
		}

		// Call Row Rendered event
		if ($CCMNoticeBoard->RowType <> EW_ROWTYPE_AGGREGATEINIT)
			$CCMNoticeBoard->Row_Rendered();
	}

	// 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";

	}

	// Message Showing event
	function Message_Showing(&$msg) {

		// Example:
		//$msg = "your new message";

	}
}
?>