Heray-Was-Here
Server : Apache
System : Linux hybrid3195.ca.ns.planethoster.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : alliancerealtynb ( 1004)
PHP Version : 7.4.33
Disable Function : noop
Directory :  /home/alliancerealtynb/www/adminAR/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/www/adminAR/property_notesdelete.php
<?php
namespace PHPMaker2020\Alliance;

// Autoload
include_once "autoload.php";

// Session
if (session_status() !== PHP_SESSION_ACTIVE)
	\Delight\Cookie\Session::start(Config("COOKIE_SAMESITE")); // Init session data

// Output buffering
ob_start();
?>
<?php

// Write header
WriteHeader(FALSE);

// Create page object
$property_notes_delete = new property_notes_delete();

// Run the page
$property_notes_delete->run();

// Setup login status
SetupLoginStatus();
SetClientVar("login", LoginStatus());

// Global Page Rendering event (in userfn*.php)
Page_Rendering();

// Page Rendering event
$property_notes_delete->Page_Render();
?>
<?php include_once "header.php"; ?>
<script>
var fproperty_notesdelete, currentPageID;
loadjs.ready("head", function() {

	// Form object
	currentPageID = ew.PAGE_ID = "delete";
	fproperty_notesdelete = currentForm = new ew.Form("fproperty_notesdelete", "delete");
	loadjs.done("fproperty_notesdelete");
});
</script>
<script>
loadjs.ready("head", function() {

	// Client script
	// Write your client script here, no need to add script tags.

});
</script>
<?php $property_notes_delete->showPageHeader(); ?>
<?php
$property_notes_delete->showMessage();
?>
<form name="fproperty_notesdelete" id="fproperty_notesdelete" class="form-inline ew-form ew-delete-form" action="<?php echo CurrentPageName() ?>" method="post">
<?php if ($Page->CheckToken) { ?>
<input type="hidden" name="<?php echo Config("TOKEN_NAME") ?>" value="<?php echo $Page->Token ?>">
<?php } ?>
<input type="hidden" name="t" value="property_notes">
<input type="hidden" name="action" id="action" value="delete">
<?php foreach ($property_notes_delete->RecKeys as $key) { ?>
<?php $keyvalue = is_array($key) ? implode(Config("COMPOSITE_KEY_SEPARATOR"), $key) : $key; ?>
<input type="hidden" name="key_m[]" value="<?php echo HtmlEncode($keyvalue) ?>">
<?php } ?>
<div class="card ew-card ew-grid">
<div class="<?php echo ResponsiveTableClass() ?>card-body ew-grid-middle-panel">
<table class="table ew-table">
	<thead>
	<tr class="ew-table-header">
<?php if ($property_notes_delete->OwnerID->Visible) { // OwnerID ?>
		<th class="<?php echo $property_notes_delete->OwnerID->headerCellClass() ?>"><span id="elh_property_notes_OwnerID" class="property_notes_OwnerID"><?php echo $property_notes_delete->OwnerID->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->Address->Visible) { // Address ?>
		<th class="<?php echo $property_notes_delete->Address->headerCellClass() ?>"><span id="elh_property_notes_Address" class="property_notes_Address"><?php echo $property_notes_delete->Address->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->Town->Visible) { // Town ?>
		<th class="<?php echo $property_notes_delete->Town->headerCellClass() ?>"><span id="elh_property_notes_Town" class="property_notes_Town"><?php echo $property_notes_delete->Town->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->Agent->Visible) { // Agent ?>
		<th class="<?php echo $property_notes_delete->Agent->headerCellClass() ?>"><span id="elh_property_notes_Agent" class="property_notes_Agent"><?php echo $property_notes_delete->Agent->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->NoteDate->Visible) { // NoteDate ?>
		<th class="<?php echo $property_notes_delete->NoteDate->headerCellClass() ?>"><span id="elh_property_notes_NoteDate" class="property_notes_NoteDate"><?php echo $property_notes_delete->NoteDate->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->NoteTime->Visible) { // NoteTime ?>
		<th class="<?php echo $property_notes_delete->NoteTime->headerCellClass() ?>"><span id="elh_property_notes_NoteTime" class="property_notes_NoteTime"><?php echo $property_notes_delete->NoteTime->caption() ?></span></th>
<?php } ?>
<?php if ($property_notes_delete->Note->Visible) { // Note ?>
		<th class="<?php echo $property_notes_delete->Note->headerCellClass() ?>"><span id="elh_property_notes_Note" class="property_notes_Note"><?php echo $property_notes_delete->Note->caption() ?></span></th>
<?php } ?>
	</tr>
	</thead>
	<tbody>
<?php
$property_notes_delete->RecordCount = 0;
$i = 0;
while (!$property_notes_delete->Recordset->EOF) {
	$property_notes_delete->RecordCount++;
	$property_notes_delete->RowCount++;

	// Set row properties
	$property_notes->resetAttributes();
	$property_notes->RowType = ROWTYPE_VIEW; // View

	// Get the field contents
	$property_notes_delete->loadRowValues($property_notes_delete->Recordset);

	// Render row
	$property_notes_delete->renderRow();
?>
	<tr <?php echo $property_notes->rowAttributes() ?>>
<?php if ($property_notes_delete->OwnerID->Visible) { // OwnerID ?>
		<td <?php echo $property_notes_delete->OwnerID->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_OwnerID" class="property_notes_OwnerID">
<span<?php echo $property_notes_delete->OwnerID->viewAttributes() ?>><?php echo $property_notes_delete->OwnerID->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->Address->Visible) { // Address ?>
		<td <?php echo $property_notes_delete->Address->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_Address" class="property_notes_Address">
<span<?php echo $property_notes_delete->Address->viewAttributes() ?>><?php echo $property_notes_delete->Address->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->Town->Visible) { // Town ?>
		<td <?php echo $property_notes_delete->Town->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_Town" class="property_notes_Town">
<span<?php echo $property_notes_delete->Town->viewAttributes() ?>><?php echo $property_notes_delete->Town->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->Agent->Visible) { // Agent ?>
		<td <?php echo $property_notes_delete->Agent->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_Agent" class="property_notes_Agent">
<span<?php echo $property_notes_delete->Agent->viewAttributes() ?>><?php echo $property_notes_delete->Agent->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->NoteDate->Visible) { // NoteDate ?>
		<td <?php echo $property_notes_delete->NoteDate->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_NoteDate" class="property_notes_NoteDate">
<span<?php echo $property_notes_delete->NoteDate->viewAttributes() ?>><?php echo $property_notes_delete->NoteDate->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->NoteTime->Visible) { // NoteTime ?>
		<td <?php echo $property_notes_delete->NoteTime->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_NoteTime" class="property_notes_NoteTime">
<span<?php echo $property_notes_delete->NoteTime->viewAttributes() ?>><?php echo $property_notes_delete->NoteTime->getViewValue() ?></span>
</span>
</td>
<?php } ?>
<?php if ($property_notes_delete->Note->Visible) { // Note ?>
		<td <?php echo $property_notes_delete->Note->cellAttributes() ?>>
<span id="el<?php echo $property_notes_delete->RowCount ?>_property_notes_Note" class="property_notes_Note">
<span<?php echo $property_notes_delete->Note->viewAttributes() ?>><?php echo $property_notes_delete->Note->getViewValue() ?></span>
</span>
</td>
<?php } ?>
	</tr>
<?php
	$property_notes_delete->Recordset->moveNext();
}
$property_notes_delete->Recordset->close();
?>
</tbody>
</table>
</div>
</div>
<div>
<button class="btn btn-primary ew-btn" name="btn-action" id="btn-action" type="submit"><?php echo $Language->phrase("DeleteBtn") ?></button>
<button class="btn btn-default ew-btn" name="btn-cancel" id="btn-cancel" type="button" data-href="<?php echo $property_notes_delete->getReturnUrl() ?>"><?php echo $Language->phrase("CancelBtn") ?></button>
</div>
</form>
<?php
$property_notes_delete->showPageFooter();
if (Config("DEBUG"))
	echo GetDebugMessage();
?>
<script>
loadjs.ready("load", function() {

	// Startup script
	// Write your table-specific startup script here
	// console.log("page loaded");

});
</script>
<?php include_once "footer.php"; ?>
<?php
$property_notes_delete->terminate();
?>

Hry