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/avantmaj.alliancerealty.nb.ca/adminAR/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/avantmaj.alliancerealty.nb.ca/adminAR/_6monthsold_reportlist.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
$_6monthsold_report_list = new _6monthsold_report_list();

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

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

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

// Page Rendering event
$_6monthsold_report_list->Page_Render();
?>
<?php include_once "header.php"; ?>
<?php if (!$_6monthsold_report_list->isExport()) { ?>
<script>
var f_6monthsold_reportlist, currentPageID;
loadjs.ready("head", function() {

	// Form object
	currentPageID = ew.PAGE_ID = "list";
	f_6monthsold_reportlist = currentForm = new ew.Form("f_6monthsold_reportlist", "list");
	f_6monthsold_reportlist.formKeyCountName = '<?php echo $_6monthsold_report_list->FormKeyCountName ?>';
	loadjs.done("f_6monthsold_reportlist");
});
var f_6monthsold_reportlistsrch;
loadjs.ready("head", function() {

	// Form object for search
	f_6monthsold_reportlistsrch = currentSearchForm = new ew.Form("f_6monthsold_reportlistsrch");

	// Dynamic selection lists
	// Filters

	f_6monthsold_reportlistsrch.filterList = <?php echo $_6monthsold_report_list->getFilterList() ?>;
	loadjs.done("f_6monthsold_reportlistsrch");
});
</script>
<script>
loadjs.ready("head", function() {

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

});
</script>
<?php } ?>
<?php if (!$_6monthsold_report_list->isExport()) { ?>
<div class="btn-toolbar ew-toolbar">
<?php if ($_6monthsold_report_list->TotalRecords > 0 && $_6monthsold_report_list->ExportOptions->visible()) { ?>
<?php $_6monthsold_report_list->ExportOptions->render("body") ?>
<?php } ?>
<?php if ($_6monthsold_report_list->ImportOptions->visible()) { ?>
<?php $_6monthsold_report_list->ImportOptions->render("body") ?>
<?php } ?>
<?php if ($_6monthsold_report_list->SearchOptions->visible()) { ?>
<?php $_6monthsold_report_list->SearchOptions->render("body") ?>
<?php } ?>
<?php if ($_6monthsold_report_list->FilterOptions->visible()) { ?>
<?php $_6monthsold_report_list->FilterOptions->render("body") ?>
<?php } ?>
<div class="clearfix"></div>
</div>
<?php } ?>
<?php
$_6monthsold_report_list->renderOtherOptions();
?>
<?php if ($Security->CanSearch()) { ?>
<?php if (!$_6monthsold_report_list->isExport() && !$_6monthsold_report->CurrentAction) { ?>
<form name="f_6monthsold_reportlistsrch" id="f_6monthsold_reportlistsrch" class="form-inline ew-form ew-ext-search-form" action="<?php echo CurrentPageName() ?>">
<div id="f_6monthsold_reportlistsrch-search-panel" class="<?php echo $_6monthsold_report_list->SearchPanelClass ?>">
<input type="hidden" name="cmd" value="search">
<input type="hidden" name="t" value="_6monthsold_report">
	<div class="ew-extended-search">
<div id="xsr_<?php echo $_6monthsold_report_list->SearchRowCount + 1 ?>" class="ew-row d-sm-flex">
	<div class="ew-quick-search input-group">
		<input type="text" name="<?php echo Config("TABLE_BASIC_SEARCH") ?>" id="<?php echo Config("TABLE_BASIC_SEARCH") ?>" class="form-control" value="<?php echo HtmlEncode($_6monthsold_report_list->BasicSearch->getKeyword()) ?>" placeholder="<?php echo HtmlEncode($Language->phrase("Search")) ?>">
		<input type="hidden" name="<?php echo Config("TABLE_BASIC_SEARCH_TYPE") ?>" id="<?php echo Config("TABLE_BASIC_SEARCH_TYPE") ?>" value="<?php echo HtmlEncode($_6monthsold_report_list->BasicSearch->getType()) ?>">
		<div class="input-group-append">
			<button class="btn btn-primary" name="btn-submit" id="btn-submit" type="submit"><?php echo $Language->phrase("SearchBtn") ?></button>
			<button type="button" data-toggle="dropdown" class="btn btn-primary dropdown-toggle dropdown-toggle-split" aria-haspopup="true" aria-expanded="false"><span id="searchtype"><?php echo $_6monthsold_report_list->BasicSearch->getTypeNameShort() ?></span></button>
			<div class="dropdown-menu dropdown-menu-right">
				<a class="dropdown-item<?php if ($_6monthsold_report_list->BasicSearch->getType() == "") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this);"><?php echo $Language->phrase("QuickSearchAuto") ?></a>
				<a class="dropdown-item<?php if ($_6monthsold_report_list->BasicSearch->getType() == "=") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, '=');"><?php echo $Language->phrase("QuickSearchExact") ?></a>
				<a class="dropdown-item<?php if ($_6monthsold_report_list->BasicSearch->getType() == "AND") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, 'AND');"><?php echo $Language->phrase("QuickSearchAll") ?></a>
				<a class="dropdown-item<?php if ($_6monthsold_report_list->BasicSearch->getType() == "OR") { ?> active<?php } ?>" href="#" onclick="return ew.setSearchType(this, 'OR');"><?php echo $Language->phrase("QuickSearchAny") ?></a>
			</div>
		</div>
	</div>
</div>
	</div><!-- /.ew-extended-search -->
</div><!-- /.ew-search-panel -->
</form>
<?php } ?>
<?php } ?>
<?php $_6monthsold_report_list->showPageHeader(); ?>
<?php
$_6monthsold_report_list->showMessage();
?>
<?php if ($_6monthsold_report_list->TotalRecords > 0 || $_6monthsold_report->CurrentAction) { ?>
<div class="card ew-card ew-grid<?php if ($_6monthsold_report_list->isAddOrEdit()) { ?> ew-grid-add-edit<?php } ?> _6monthsold_report">
<?php if (!$_6monthsold_report_list->isExport()) { ?>
<div class="card-header ew-grid-upper-panel">
<?php if (!$_6monthsold_report_list->isGridAdd()) { ?>
<form name="ew-pager-form" class="form-inline ew-form ew-pager-form" action="<?php echo CurrentPageName() ?>">
<?php echo $_6monthsold_report_list->Pager->render() ?>
</form>
<?php } ?>
<div class="ew-list-other-options">
<?php $_6monthsold_report_list->OtherOptions->render("body") ?>
</div>
<div class="clearfix"></div>
</div>
<?php } ?>
<form name="f_6monthsold_reportlist" id="f_6monthsold_reportlist" class="form-inline ew-form ew-list-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="_6monthsold_report">
<div id="gmp__6monthsold_report" class="<?php echo ResponsiveTableClass() ?>card-body ew-grid-middle-panel">
<?php if ($_6monthsold_report_list->TotalRecords > 0 || $_6monthsold_report_list->isGridEdit()) { ?>
<table id="tbl__6monthsold_reportlist" class="table ew-table"><!-- .ew-table -->
<thead>
	<tr class="ew-table-header">
<?php

// Header row
$_6monthsold_report->RowType = ROWTYPE_HEADER;

// Render list options
$_6monthsold_report_list->renderListOptions();

// Render list options (header, left)
$_6monthsold_report_list->ListOptions->render("header", "left");
?>
<?php if ($_6monthsold_report_list->id->Visible) { // id ?>
	<?php if ($_6monthsold_report_list->SortUrl($_6monthsold_report_list->id) == "") { ?>
		<th data-name="id" class="<?php echo $_6monthsold_report_list->id->headerCellClass() ?>"><div id="elh__6monthsold_report_id" class="_6monthsold_report_id"><div class="ew-table-header-caption"><?php echo $_6monthsold_report_list->id->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="id" class="<?php echo $_6monthsold_report_list->id->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $_6monthsold_report_list->SortUrl($_6monthsold_report_list->id) ?>', 2);"><div id="elh__6monthsold_report_id" class="_6monthsold_report_id">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $_6monthsold_report_list->id->caption() ?></span><span class="ew-table-header-sort"><?php if ($_6monthsold_report_list->id->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($_6monthsold_report_list->id->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($_6monthsold_report_list->Address->Visible) { // Address ?>
	<?php if ($_6monthsold_report_list->SortUrl($_6monthsold_report_list->Address) == "") { ?>
		<th data-name="Address" class="<?php echo $_6monthsold_report_list->Address->headerCellClass() ?>"><div id="elh__6monthsold_report_Address" class="_6monthsold_report_Address"><div class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Address->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="Address" class="<?php echo $_6monthsold_report_list->Address->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $_6monthsold_report_list->SortUrl($_6monthsold_report_list->Address) ?>', 2);"><div id="elh__6monthsold_report_Address" class="_6monthsold_report_Address">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Address->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($_6monthsold_report_list->Address->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($_6monthsold_report_list->Address->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($_6monthsold_report_list->Town->Visible) { // Town ?>
	<?php if ($_6monthsold_report_list->SortUrl($_6monthsold_report_list->Town) == "") { ?>
		<th data-name="Town" class="<?php echo $_6monthsold_report_list->Town->headerCellClass() ?>"><div id="elh__6monthsold_report_Town" class="_6monthsold_report_Town"><div class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Town->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="Town" class="<?php echo $_6monthsold_report_list->Town->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $_6monthsold_report_list->SortUrl($_6monthsold_report_list->Town) ?>', 2);"><div id="elh__6monthsold_report_Town" class="_6monthsold_report_Town">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Town->caption() ?><?php echo $Language->phrase("SrchLegend") ?></span><span class="ew-table-header-sort"><?php if ($_6monthsold_report_list->Town->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($_6monthsold_report_list->Town->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($_6monthsold_report_list->SoldDate->Visible) { // SoldDate ?>
	<?php if ($_6monthsold_report_list->SortUrl($_6monthsold_report_list->SoldDate) == "") { ?>
		<th data-name="SoldDate" class="<?php echo $_6monthsold_report_list->SoldDate->headerCellClass() ?>"><div id="elh__6monthsold_report_SoldDate" class="_6monthsold_report_SoldDate"><div class="ew-table-header-caption"><?php echo $_6monthsold_report_list->SoldDate->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="SoldDate" class="<?php echo $_6monthsold_report_list->SoldDate->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $_6monthsold_report_list->SortUrl($_6monthsold_report_list->SoldDate) ?>', 2);"><div id="elh__6monthsold_report_SoldDate" class="_6monthsold_report_SoldDate">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $_6monthsold_report_list->SoldDate->caption() ?></span><span class="ew-table-header-sort"><?php if ($_6monthsold_report_list->SoldDate->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($_6monthsold_report_list->SoldDate->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php if ($_6monthsold_report_list->Days->Visible) { // Days ?>
	<?php if ($_6monthsold_report_list->SortUrl($_6monthsold_report_list->Days) == "") { ?>
		<th data-name="Days" class="<?php echo $_6monthsold_report_list->Days->headerCellClass() ?>"><div id="elh__6monthsold_report_Days" class="_6monthsold_report_Days"><div class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Days->caption() ?></div></div></th>
	<?php } else { ?>
		<th data-name="Days" class="<?php echo $_6monthsold_report_list->Days->headerCellClass() ?>"><div class="ew-pointer" onclick="ew.sort(event, '<?php echo $_6monthsold_report_list->SortUrl($_6monthsold_report_list->Days) ?>', 2);"><div id="elh__6monthsold_report_Days" class="_6monthsold_report_Days">
			<div class="ew-table-header-btn"><span class="ew-table-header-caption"><?php echo $_6monthsold_report_list->Days->caption() ?></span><span class="ew-table-header-sort"><?php if ($_6monthsold_report_list->Days->getSort() == "ASC") { ?><i class="fas fa-sort-up"></i><?php } elseif ($_6monthsold_report_list->Days->getSort() == "DESC") { ?><i class="fas fa-sort-down"></i><?php } ?></span></div>
		</div></div></th>
	<?php } ?>
<?php } ?>
<?php

// Render list options (header, right)
$_6monthsold_report_list->ListOptions->render("header", "right");
?>
	</tr>
</thead>
<tbody>
<?php
if ($_6monthsold_report_list->ExportAll && $_6monthsold_report_list->isExport()) {
	$_6monthsold_report_list->StopRecord = $_6monthsold_report_list->TotalRecords;
} else {

	// Set the last record to display
	if ($_6monthsold_report_list->TotalRecords > $_6monthsold_report_list->StartRecord + $_6monthsold_report_list->DisplayRecords - 1)
		$_6monthsold_report_list->StopRecord = $_6monthsold_report_list->StartRecord + $_6monthsold_report_list->DisplayRecords - 1;
	else
		$_6monthsold_report_list->StopRecord = $_6monthsold_report_list->TotalRecords;
}
$_6monthsold_report_list->RecordCount = $_6monthsold_report_list->StartRecord - 1;
if ($_6monthsold_report_list->Recordset && !$_6monthsold_report_list->Recordset->EOF) {
	$_6monthsold_report_list->Recordset->moveFirst();
	$selectLimit = $_6monthsold_report_list->UseSelectLimit;
	if (!$selectLimit && $_6monthsold_report_list->StartRecord > 1)
		$_6monthsold_report_list->Recordset->move($_6monthsold_report_list->StartRecord - 1);
} elseif (!$_6monthsold_report->AllowAddDeleteRow && $_6monthsold_report_list->StopRecord == 0) {
	$_6monthsold_report_list->StopRecord = $_6monthsold_report->GridAddRowCount;
}

// Initialize aggregate
$_6monthsold_report->RowType = ROWTYPE_AGGREGATEINIT;
$_6monthsold_report->resetAttributes();
$_6monthsold_report_list->renderRow();
while ($_6monthsold_report_list->RecordCount < $_6monthsold_report_list->StopRecord) {
	$_6monthsold_report_list->RecordCount++;
	if ($_6monthsold_report_list->RecordCount >= $_6monthsold_report_list->StartRecord) {
		$_6monthsold_report_list->RowCount++;

		// Set up key count
		$_6monthsold_report_list->KeyCount = $_6monthsold_report_list->RowIndex;

		// Init row class and style
		$_6monthsold_report->resetAttributes();
		$_6monthsold_report->CssClass = "";
		if ($_6monthsold_report_list->isGridAdd()) {
		} else {
			$_6monthsold_report_list->loadRowValues($_6monthsold_report_list->Recordset); // Load row values
		}
		$_6monthsold_report->RowType = ROWTYPE_VIEW; // Render view

		// Set up row id / data-rowindex
		$_6monthsold_report->RowAttrs->merge(["data-rowindex" => $_6monthsold_report_list->RowCount, "id" => "r" . $_6monthsold_report_list->RowCount . "__6monthsold_report", "data-rowtype" => $_6monthsold_report->RowType]);

		// Render row
		$_6monthsold_report_list->renderRow();

		// Render list options
		$_6monthsold_report_list->renderListOptions();
?>
	<tr <?php echo $_6monthsold_report->rowAttributes() ?>>
<?php

// Render list options (body, left)
$_6monthsold_report_list->ListOptions->render("body", "left", $_6monthsold_report_list->RowCount);
?>
	<?php if ($_6monthsold_report_list->id->Visible) { // id ?>
		<td data-name="id" <?php echo $_6monthsold_report_list->id->cellAttributes() ?>>
<span id="el<?php echo $_6monthsold_report_list->RowCount ?>__6monthsold_report_id">
<span<?php echo $_6monthsold_report_list->id->viewAttributes() ?>><?php echo $_6monthsold_report_list->id->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($_6monthsold_report_list->Address->Visible) { // Address ?>
		<td data-name="Address" <?php echo $_6monthsold_report_list->Address->cellAttributes() ?>>
<span id="el<?php echo $_6monthsold_report_list->RowCount ?>__6monthsold_report_Address">
<span<?php echo $_6monthsold_report_list->Address->viewAttributes() ?>><?php echo $_6monthsold_report_list->Address->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($_6monthsold_report_list->Town->Visible) { // Town ?>
		<td data-name="Town" <?php echo $_6monthsold_report_list->Town->cellAttributes() ?>>
<span id="el<?php echo $_6monthsold_report_list->RowCount ?>__6monthsold_report_Town">
<span<?php echo $_6monthsold_report_list->Town->viewAttributes() ?>><?php echo $_6monthsold_report_list->Town->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($_6monthsold_report_list->SoldDate->Visible) { // SoldDate ?>
		<td data-name="SoldDate" <?php echo $_6monthsold_report_list->SoldDate->cellAttributes() ?>>
<span id="el<?php echo $_6monthsold_report_list->RowCount ?>__6monthsold_report_SoldDate">
<span<?php echo $_6monthsold_report_list->SoldDate->viewAttributes() ?>><?php echo $_6monthsold_report_list->SoldDate->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
	<?php if ($_6monthsold_report_list->Days->Visible) { // Days ?>
		<td data-name="Days" <?php echo $_6monthsold_report_list->Days->cellAttributes() ?>>
<span id="el<?php echo $_6monthsold_report_list->RowCount ?>__6monthsold_report_Days">
<span<?php echo $_6monthsold_report_list->Days->viewAttributes() ?>><?php echo $_6monthsold_report_list->Days->getViewValue() ?></span>
</span>
</td>
	<?php } ?>
<?php

// Render list options (body, right)
$_6monthsold_report_list->ListOptions->render("body", "right", $_6monthsold_report_list->RowCount);
?>
	</tr>
<?php
	}
	if (!$_6monthsold_report_list->isGridAdd())
		$_6monthsold_report_list->Recordset->moveNext();
}
?>
</tbody>
</table><!-- /.ew-table -->
<?php } ?>
</div><!-- /.ew-grid-middle-panel -->
<?php if (!$_6monthsold_report->CurrentAction) { ?>
<input type="hidden" name="action" id="action" value="">
<?php } ?>
</form><!-- /.ew-list-form -->
<?php

// Close recordset
if ($_6monthsold_report_list->Recordset)
	$_6monthsold_report_list->Recordset->Close();
?>
<?php if (!$_6monthsold_report_list->isExport()) { ?>
<div class="card-footer ew-grid-lower-panel">
<?php if (!$_6monthsold_report_list->isGridAdd()) { ?>
<form name="ew-pager-form" class="form-inline ew-form ew-pager-form" action="<?php echo CurrentPageName() ?>">
<?php echo $_6monthsold_report_list->Pager->render() ?>
</form>
<?php } ?>
<div class="ew-list-other-options">
<?php $_6monthsold_report_list->OtherOptions->render("body", "bottom") ?>
</div>
<div class="clearfix"></div>
</div>
<?php } ?>
</div><!-- /.ew-grid -->
<?php } ?>
<?php if ($_6monthsold_report_list->TotalRecords == 0 && !$_6monthsold_report->CurrentAction) { // Show other options ?>
<div class="ew-list-other-options">
<?php $_6monthsold_report_list->OtherOptions->render("body") ?>
</div>
<div class="clearfix"></div>
<?php } ?>
<?php
$_6monthsold_report_list->showPageFooter();
if (Config("DEBUG"))
	echo GetDebugMessage();
?>
<?php if (!$_6monthsold_report_list->isExport()) { ?>
<script>
loadjs.ready("load", function() {

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

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

Hry