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/public_html/adminAR/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/public_html/adminAR/classes/wp_wpl_properties2_add.php
<?php
namespace PHPMaker2020\Alliance;

/**
 * Page class
 */
class wp_wpl_properties2_add extends wp_wpl_properties2
{

	// Page ID
	public $PageID = "add";

	// Project ID
	public $ProjectID = "{FE4AA35B-E768-461D-8010-4FE2D8E13345}";

	// Table name
	public $TableName = 'wp_wpl_properties2';

	// Page object name
	public $PageObjName = "wp_wpl_properties2_add";

	// Page headings
	public $Heading = "";
	public $Subheading = "";
	public $PageHeader;
	public $PageFooter;

	// Token
	public $Token = "";
	public $TokenTimeout = 0;
	public $CheckToken;

	// Page heading
	public function pageHeading()
	{
		global $Language;
		if ($this->Heading != "")
			return $this->Heading;
		if (method_exists($this, "tableCaption"))
			return $this->tableCaption();
		return "";
	}

	// Page subheading
	public function pageSubheading()
	{
		global $Language;
		if ($this->Subheading != "")
			return $this->Subheading;
		if ($this->TableName)
			return $Language->phrase($this->PageID);
		return "";
	}

	// Page name
	public function pageName()
	{
		return CurrentPageName();
	}

	// Page URL
	public function pageUrl()
	{
		$url = CurrentPageName() . "?";
		if ($this->UseTokenInUrl)
			$url .= "t=" . $this->TableVar . "&"; // Add page token
		return $url;
	}

	// Messages
	private $_message = "";
	private $_failureMessage = "";
	private $_successMessage = "";
	private $_warningMessage = "";

	// Get message
	public function getMessage()
	{
		return isset($_SESSION[SESSION_MESSAGE]) ? $_SESSION[SESSION_MESSAGE] : $this->_message;
	}

	// Set message
	public function setMessage($v)
	{
		AddMessage($this->_message, $v);
		$_SESSION[SESSION_MESSAGE] = $this->_message;
	}

	// Get failure message
	public function getFailureMessage()
	{
		return isset($_SESSION[SESSION_FAILURE_MESSAGE]) ? $_SESSION[SESSION_FAILURE_MESSAGE] : $this->_failureMessage;
	}

	// Set failure message
	public function setFailureMessage($v)
	{
		AddMessage($this->_failureMessage, $v);
		$_SESSION[SESSION_FAILURE_MESSAGE] = $this->_failureMessage;
	}

	// Get success message
	public function getSuccessMessage()
	{
		return isset($_SESSION[SESSION_SUCCESS_MESSAGE]) ? $_SESSION[SESSION_SUCCESS_MESSAGE] : $this->_successMessage;
	}

	// Set success message
	public function setSuccessMessage($v)
	{
		AddMessage($this->_successMessage, $v);
		$_SESSION[SESSION_SUCCESS_MESSAGE] = $this->_successMessage;
	}

	// Get warning message
	public function getWarningMessage()
	{
		return isset($_SESSION[SESSION_WARNING_MESSAGE]) ? $_SESSION[SESSION_WARNING_MESSAGE] : $this->_warningMessage;
	}

	// Set warning message
	public function setWarningMessage($v)
	{
		AddMessage($this->_warningMessage, $v);
		$_SESSION[SESSION_WARNING_MESSAGE] = $this->_warningMessage;
	}

	// Clear message
	public function clearMessage()
	{
		$this->_message = "";
		$_SESSION[SESSION_MESSAGE] = "";
	}

	// Clear failure message
	public function clearFailureMessage()
	{
		$this->_failureMessage = "";
		$_SESSION[SESSION_FAILURE_MESSAGE] = "";
	}

	// Clear success message
	public function clearSuccessMessage()
	{
		$this->_successMessage = "";
		$_SESSION[SESSION_SUCCESS_MESSAGE] = "";
	}

	// Clear warning message
	public function clearWarningMessage()
	{
		$this->_warningMessage = "";
		$_SESSION[SESSION_WARNING_MESSAGE] = "";
	}

	// Clear messages
	public function clearMessages()
	{
		$this->clearMessage();
		$this->clearFailureMessage();
		$this->clearSuccessMessage();
		$this->clearWarningMessage();
	}

	// Show message
	public function showMessage()
	{
		$hidden = TRUE;
		$html = "";

		// Message
		$message = $this->getMessage();
		if (method_exists($this, "Message_Showing"))
			$this->Message_Showing($message, "");
		if ($message != "") { // Message in Session, display
			if (!$hidden)
				$message = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>' . $message;
			$html .= '<div class="alert alert-info alert-dismissible ew-info"><i class="icon fas fa-info"></i>' . $message . '</div>';
			$_SESSION[SESSION_MESSAGE] = ""; // Clear message in Session
		}

		// Warning message
		$warningMessage = $this->getWarningMessage();
		if (method_exists($this, "Message_Showing"))
			$this->Message_Showing($warningMessage, "warning");
		if ($warningMessage != "") { // Message in Session, display
			if (!$hidden)
				$warningMessage = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>' . $warningMessage;
			$html .= '<div class="alert alert-warning alert-dismissible ew-warning"><i class="icon fas fa-exclamation"></i>' . $warningMessage . '</div>';
			$_SESSION[SESSION_WARNING_MESSAGE] = ""; // Clear message in Session
		}

		// Success message
		$successMessage = $this->getSuccessMessage();
		if (method_exists($this, "Message_Showing"))
			$this->Message_Showing($successMessage, "success");
		if ($successMessage != "") { // Message in Session, display
			if (!$hidden)
				$successMessage = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>' . $successMessage;
			$html .= '<div class="alert alert-success alert-dismissible ew-success"><i class="icon fas fa-check"></i>' . $successMessage . '</div>';
			$_SESSION[SESSION_SUCCESS_MESSAGE] = ""; // Clear message in Session
		}

		// Failure message
		$errorMessage = $this->getFailureMessage();
		if (method_exists($this, "Message_Showing"))
			$this->Message_Showing($errorMessage, "failure");
		if ($errorMessage != "") { // Message in Session, display
			if (!$hidden)
				$errorMessage = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>' . $errorMessage;
			$html .= '<div class="alert alert-danger alert-dismissible ew-error"><i class="icon fas fa-ban"></i>' . $errorMessage . '</div>';
			$_SESSION[SESSION_FAILURE_MESSAGE] = ""; // Clear message in Session
		}
		echo '<div class="ew-message-dialog' . (($hidden) ? ' d-none' : "") . '">' . $html . '</div>';
	}

	// Get message as array
	public function getMessages()
	{
		$ar = [];

		// Message
		$message = $this->getMessage();

		//if (method_exists($this, "Message_Showing"))
		//	$this->Message_Showing($message, "");

		if ($message != "") { // Message in Session, display
			$ar["message"] = $message;
			$_SESSION[SESSION_MESSAGE] = ""; // Clear message in Session
		}

		// Warning message
		$warningMessage = $this->getWarningMessage();

		//if (method_exists($this, "Message_Showing"))
		//	$this->Message_Showing($warningMessage, "warning");

		if ($warningMessage != "") { // Message in Session, display
			$ar["warningMessage"] = $warningMessage;
			$_SESSION[SESSION_WARNING_MESSAGE] = ""; // Clear message in Session
		}

		// Success message
		$successMessage = $this->getSuccessMessage();

		//if (method_exists($this, "Message_Showing"))
		//	$this->Message_Showing($successMessage, "success");

		if ($successMessage != "") { // Message in Session, display
			$ar["successMessage"] = $successMessage;
			$_SESSION[SESSION_SUCCESS_MESSAGE] = ""; // Clear message in Session
		}

		// Failure message
		$failureMessage = $this->getFailureMessage();

		//if (method_exists($this, "Message_Showing"))
		//	$this->Message_Showing($failureMessage, "failure");

		if ($failureMessage != "") { // Message in Session, display
			$ar["failureMessage"] = $failureMessage;
			$_SESSION[SESSION_FAILURE_MESSAGE] = ""; // Clear message in Session
		}
		return $ar;
	}

	// Show Page Header
	public function showPageHeader()
	{
		$header = $this->PageHeader;
		$this->Page_DataRendering($header);
		if ($header != "") { // Header exists, display
			echo '<p id="ew-page-header">' . $header . '</p>';
		}
	}

	// Show Page Footer
	public function showPageFooter()
	{
		$footer = $this->PageFooter;
		$this->Page_DataRendered($footer);
		if ($footer != "") { // Footer exists, display
			echo '<p id="ew-page-footer">' . $footer . '</p>';
		}
	}

	// Validate page request
	protected function isPageRequest()
	{
		global $CurrentForm;
		if ($this->UseTokenInUrl) {
			if ($CurrentForm)
				return ($this->TableVar == $CurrentForm->getValue("t"));
			if (Get("t") !== NULL)
				return ($this->TableVar == Get("t"));
		}
		return TRUE;
	}

	// Valid Post
	protected function validPost()
	{
		if (!$this->CheckToken || !IsPost() || IsApi())
			return TRUE;
		if (Post(Config("TOKEN_NAME")) === NULL)
			return FALSE;
		$fn = Config("CHECK_TOKEN_FUNC");
		if (is_callable($fn))
			return $fn(Post(Config("TOKEN_NAME")), $this->TokenTimeout);
		return FALSE;
	}

	// Create Token
	public function createToken()
	{
		global $CurrentToken;
		$fn = Config("CREATE_TOKEN_FUNC"); // Always create token, required by API file/lookup request
		if ($this->Token == "" && is_callable($fn)) // Create token
			$this->Token = $fn();
		$CurrentToken = $this->Token; // Save to global variable
	}

	// Constructor
	public function __construct()
	{
		global $Language, $DashboardReport;

		// Check token
		$this->CheckToken = Config("CHECK_TOKEN");

		// Initialize
		$GLOBALS["Page"] = &$this;
		$this->TokenTimeout = SessionTimeoutTime();

		// Language object
		if (!isset($Language))
			$Language = new Language();

		// Parent constuctor
		parent::__construct();

		// Table object (wp_wpl_properties2)
		if (!isset($GLOBALS["wp_wpl_properties2"]) || get_class($GLOBALS["wp_wpl_properties2"]) == PROJECT_NAMESPACE . "wp_wpl_properties2") {
			$GLOBALS["wp_wpl_properties2"] = &$this;
			$GLOBALS["Table"] = &$GLOBALS["wp_wpl_properties2"];
		}

		// Page ID (for backward compatibility only)
		if (!defined(PROJECT_NAMESPACE . "PAGE_ID"))
			define(PROJECT_NAMESPACE . "PAGE_ID", 'add');

		// Table name (for backward compatibility only)
		if (!defined(PROJECT_NAMESPACE . "TABLE_NAME"))
			define(PROJECT_NAMESPACE . "TABLE_NAME", 'wp_wpl_properties2');

		// Start timer
		if (!isset($GLOBALS["DebugTimer"]))
			$GLOBALS["DebugTimer"] = new Timer();

		// Debug message
		LoadDebugMessage();

		// Open connection
		if (!isset($GLOBALS["Conn"]))
			$GLOBALS["Conn"] = $this->getConnection();
	}

	// Terminate page
	public function terminate($url = "")
	{
		global $ExportFileName, $TempImages, $DashboardReport;

		// Page Unload event
		$this->Page_Unload();

		// Global Page Unloaded event (in userfn*.php)
		Page_Unloaded();

		// Export
		global $wp_wpl_properties2;
		if ($this->CustomExport && $this->CustomExport == $this->Export && array_key_exists($this->CustomExport, Config("EXPORT_CLASSES"))) {
				$content = ob_get_contents();
			if ($ExportFileName == "")
				$ExportFileName = $this->TableVar;
			$class = PROJECT_NAMESPACE . Config("EXPORT_CLASSES." . $this->CustomExport);
			if (class_exists($class)) {
				$doc = new $class($wp_wpl_properties2);
				$doc->Text = @$content;
				if ($this->isExport("email"))
					echo $this->exportEmail($doc->Text);
				else
					$doc->export();
				DeleteTempImages(); // Delete temp images
				exit();
			}
		}
		if (!IsApi())
			$this->Page_Redirecting($url);

		// Close connection
		CloseConnections();

		// Return for API
		if (IsApi()) {
			$res = $url === TRUE;
			if (!$res) // Show error
				WriteJson(array_merge(["success" => FALSE], $this->getMessages()));
			return;
		}

		// Go to URL if specified
		if ($url != "") {
			if (!Config("DEBUG") && ob_get_length())
				ob_end_clean();

			// Handle modal response
			if ($this->IsModal) { // Show as modal
				$row = ["url" => $url, "modal" => "1"];
				$pageName = GetPageName($url);
				if ($pageName != $this->getListUrl()) { // Not List page
					$row["caption"] = $this->getModalCaption($pageName);
					if ($pageName == "wp_wpl_properties2view.php")
						$row["view"] = "1";
				} else { // List page should not be shown as modal => error
					$row["error"] = $this->getFailureMessage();
					$this->clearFailureMessage();
				}
				WriteJson($row);
			} else {
				SaveDebugMessage();
				AddHeader("Location", $url);
			}
		}
		exit();
	}

	// Get records from recordset
	protected function getRecordsFromRecordset($rs, $current = FALSE)
	{
		$rows = [];
		if (is_object($rs)) { // Recordset
			while ($rs && !$rs->EOF) {
				$this->loadRowValues($rs); // Set up DbValue/CurrentValue
				$row = $this->getRecordFromArray($rs->fields);
				if ($current)
					return $row;
				else
					$rows[] = $row;
				$rs->moveNext();
			}
		} elseif (is_array($rs)) {
			foreach ($rs as $ar) {
				$row = $this->getRecordFromArray($ar);
				if ($current)
					return $row;
				else
					$rows[] = $row;
			}
		}
		return $rows;
	}

	// Get record from array
	protected function getRecordFromArray($ar)
	{
		$row = [];
		if (is_array($ar)) {
			foreach ($ar as $fldname => $val) {
				if (array_key_exists($fldname, $this->fields) && ($this->fields[$fldname]->Visible || $this->fields[$fldname]->IsPrimaryKey)) { // Primary key or Visible
					$fld = &$this->fields[$fldname];
					if ($fld->HtmlTag == "FILE") { // Upload field
						if (EmptyValue($val)) {
							$row[$fldname] = NULL;
						} else {
							if ($fld->DataType == DATATYPE_BLOB) {
								$url = FullUrl(GetApiUrl(Config("API_FILE_ACTION"),
									Config("API_OBJECT_NAME") . "=" . $fld->TableVar . "&" .
									Config("API_FIELD_NAME") . "=" . $fld->Param . "&" .
									Config("API_KEY_NAME") . "=" . rawurlencode($this->getRecordKeyValue($ar)))); //*** need to add this? API may not be in the same folder
								$row[$fldname] = ["type" => ContentType($val), "url" => $url, "name" => $fld->Param . ContentExtension($val)];
							} elseif (!$fld->UploadMultiple || !ContainsString($val, Config("MULTIPLE_UPLOAD_SEPARATOR"))) { // Single file
								$url = FullUrl(GetApiUrl(Config("API_FILE_ACTION"),
									Config("API_OBJECT_NAME") . "=" . $fld->TableVar . "&" .
									"fn=" . Encrypt($fld->physicalUploadPath() . $val)));
								$row[$fldname] = ["type" => MimeContentType($val), "url" => $url, "name" => $val];
							} else { // Multiple files
								$files = explode(Config("MULTIPLE_UPLOAD_SEPARATOR"), $val);
								$ar = [];
								foreach ($files as $file) {
									$url = FullUrl(GetApiUrl(Config("API_FILE_ACTION"),
										Config("API_OBJECT_NAME") . "=" . $fld->TableVar . "&" .
										"fn=" . Encrypt($fld->physicalUploadPath() . $file)));
									if (!EmptyValue($file))
										$ar[] = ["type" => MimeContentType($file), "url" => $url, "name" => $file];
								}
								$row[$fldname] = $ar;
							}
						}
					} else {
						$row[$fldname] = $val;
					}
				}
			}
		}
		return $row;
	}

	// Get record key value from array
	protected function getRecordKeyValue($ar)
	{
		$key = "";
		if (is_array($ar)) {
			$key .= @$ar['id'];
		}
		return $key;
	}

	/**
	 * Hide fields for add/edit
	 *
	 * @return void
	 */
	protected function hideFieldsForAddEdit()
	{
		if ($this->isAdd() || $this->isCopy() || $this->isGridAdd())
			$this->id->Visible = FALSE;
	}

	// Lookup data
	public function lookup()
	{
		global $Language, $Security;
		if (!isset($Language))
			$Language = new Language(Config("LANGUAGE_FOLDER"), Post("language", ""));

		// Set up API request
		if (!ValidApiRequest())
			return FALSE;
		$this->setupApiSecurity();

		// Get lookup object
		$fieldName = Post("field");
		if (!array_key_exists($fieldName, $this->fields))
			return FALSE;
		$lookupField = $this->fields[$fieldName];
		$lookup = $lookupField->Lookup;
		if ($lookup === NULL)
			return FALSE;
		if (!$Security->isLoggedIn()) // Logged in
			return FALSE;

		// Get lookup parameters
		$lookupType = Post("ajax", "unknown");
		$pageSize = -1;
		$offset = -1;
		$searchValue = "";
		if (SameText($lookupType, "modal")) {
			$searchValue = Post("sv", "");
			$pageSize = Post("recperpage", 10);
			$offset = Post("start", 0);
		} elseif (SameText($lookupType, "autosuggest")) {
			$searchValue = Param("q", "");
			$pageSize = Param("n", -1);
			$pageSize = is_numeric($pageSize) ? (int)$pageSize : -1;
			if ($pageSize <= 0)
				$pageSize = Config("AUTO_SUGGEST_MAX_ENTRIES");
			$start = Param("start", -1);
			$start = is_numeric($start) ? (int)$start : -1;
			$page = Param("page", -1);
			$page = is_numeric($page) ? (int)$page : -1;
			$offset = $start >= 0 ? $start : ($page > 0 && $pageSize > 0 ? ($page - 1) * $pageSize : 0);
		}
		$userSelect = Decrypt(Post("s", ""));
		$userFilter = Decrypt(Post("f", ""));
		$userOrderBy = Decrypt(Post("o", ""));
		$keys = Post("keys");
		$lookup->LookupType = $lookupType; // Lookup type
		if ($keys !== NULL) { // Selected records from modal
			if (is_array($keys))
				$keys = implode(Config("MULTIPLE_OPTION_SEPARATOR"), $keys);
			$lookup->FilterFields = []; // Skip parent fields if any
			$lookup->FilterValues[] = $keys; // Lookup values
			$pageSize = -1; // Show all records
		} else { // Lookup values
			$lookup->FilterValues[] = Post("v0", Post("lookupValue", ""));
		}
		$cnt = is_array($lookup->FilterFields) ? count($lookup->FilterFields) : 0;
		for ($i = 1; $i <= $cnt; $i++)
			$lookup->FilterValues[] = Post("v" . $i, "");
		$lookup->SearchValue = $searchValue;
		$lookup->PageSize = $pageSize;
		$lookup->Offset = $offset;
		if ($userSelect != "")
			$lookup->UserSelect = $userSelect;
		if ($userFilter != "")
			$lookup->UserFilter = $userFilter;
		if ($userOrderBy != "")
			$lookup->UserOrderBy = $userOrderBy;
		$lookup->toJson($this); // Use settings from current page
	}

	// Set up API security
	public function setupApiSecurity()
	{
		global $Security;

		// Setup security for API request
	}
	public $FormClassName = "ew-horizontal ew-form ew-add-form";
	public $IsModal = FALSE;
	public $IsMobileOrModal = FALSE;
	public $DbMasterFilter = "";
	public $DbDetailFilter = "";
	public $StartRecord;
	public $Priv = 0;
	public $OldRecordset;
	public $CopyRecord;

	//
	// Page run
	//

	public function run()
	{
		global $ExportType, $CustomExportType, $ExportFileName, $UserProfile, $Language, $Security, $CurrentForm,
			$FormError, $SkipHeaderFooter;

		// Is modal
		$this->IsModal = (Param("modal") == "1");

		// User profile
		$UserProfile = new UserProfile();

		// Security
		if (ValidApiRequest()) { // API request
			$this->setupApiSecurity(); // Set up API Security
			if (!$Security->canAdd()) {
				SetStatus(401); // Unauthorized
				return;
			}
		} else {
			$Security = new AdvancedSecurity();
			if (!$Security->isLoggedIn())
				$Security->autoLogin();
			$Security->loadCurrentUserLevel($this->ProjectID . $this->TableName);
			if (!$Security->canAdd()) {
				$Security->saveLastUrl();
				$this->setFailureMessage(DeniedMessage()); // Set no permission
				if ($Security->canList())
					$this->terminate(GetUrl("wp_wpl_properties2list.php"));
				else
					$this->terminate(GetUrl("login.php"));
				return;
			}
		}

		// Create form object
		$CurrentForm = new HttpForm();
		$this->CurrentAction = Param("action"); // Set up current action
		$this->id->Visible = FALSE;
		$this->att_numb->setVisibility();
		$this->sent_numb->setVisibility();
		$this->contact_numb->setVisibility();
		$this->inc_in_listings_numb->setVisibility();
		$this->visit_time->setVisibility();
		$this->visit_date->setVisibility();
		$this->vids_numb->setVisibility();
		$this->hideFieldsForAddEdit();

		// Do not use lookup cache
		$this->setUseLookupCache(FALSE);

		// Global Page Loading event (in userfn*.php)
		Page_Loading();

		// Page Load event
		$this->Page_Load();

		// Check token
		if (!$this->validPost()) {
			Write($Language->phrase("InvalidPostRequest"));
			$this->terminate();
		}

		// Create Token
		$this->createToken();

		// Set up lookup cache
		// Check modal

		if ($this->IsModal)
			$SkipHeaderFooter = TRUE;
		$this->IsMobileOrModal = IsMobile() || $this->IsModal;
		$this->FormClassName = "ew-form ew-add-form ew-horizontal";
		$postBack = FALSE;

		// Set up current action
		if (IsApi()) {
			$this->CurrentAction = "insert"; // Add record directly
			$postBack = TRUE;
		} elseif (Post("action") !== NULL) {
			$this->CurrentAction = Post("action"); // Get form action
			$postBack = TRUE;
		} else { // Not post back

			// Load key values from QueryString
			$this->CopyRecord = TRUE;
			if (Get("id") !== NULL) {
				$this->id->setQueryStringValue(Get("id"));
				$this->setKey("id", $this->id->CurrentValue); // Set up key
			} else {
				$this->setKey("id", ""); // Clear key
				$this->CopyRecord = FALSE;
			}
			if ($this->CopyRecord) {
				$this->CurrentAction = "copy"; // Copy record
			} else {
				$this->CurrentAction = "show"; // Display blank record
			}
		}

		// Load old record / default values
		$loaded = $this->loadOldRecord();

		// Load form values
		if ($postBack) {
			$this->loadFormValues(); // Load form values
		}

		// Validate form if post back
		if ($postBack) {
			if (!$this->validateForm()) {
				$this->EventCancelled = TRUE; // Event cancelled
				$this->restoreFormValues(); // Restore form values
				$this->setFailureMessage($FormError);
				if (IsApi()) {
					$this->terminate();
					return;
				} else {
					$this->CurrentAction = "show"; // Form error, reset action
				}
			}
		}

		// Perform current action
		switch ($this->CurrentAction) {
			case "copy": // Copy an existing record
				if (!$loaded) { // Record not loaded
					if ($this->getFailureMessage() == "")
						$this->setFailureMessage($Language->phrase("NoRecord")); // No record found
					$this->terminate("wp_wpl_properties2list.php"); // No matching record, return to list
				}
				break;
			case "insert": // Add new record
				$this->SendEmail = TRUE; // Send email on add success
				if ($this->addRow($this->OldRecordset)) { // Add successful
					if ($this->getSuccessMessage() == "")
						$this->setSuccessMessage($Language->phrase("AddSuccess")); // Set up success message
					$returnUrl = $this->getReturnUrl();
					if (GetPageName($returnUrl) == "wp_wpl_properties2list.php")
						$returnUrl = $this->addMasterUrl($returnUrl); // List page, return to List page with correct master key if necessary
					elseif (GetPageName($returnUrl) == "wp_wpl_properties2view.php")
						$returnUrl = $this->getViewUrl(); // View page, return to View page with keyurl directly
					if (IsApi()) { // Return to caller
						$this->terminate(TRUE);
						return;
					} else {
						$this->terminate($returnUrl);
					}
				} elseif (IsApi()) { // API request, return
					$this->terminate();
					return;
				} else {
					$this->EventCancelled = TRUE; // Event cancelled
					$this->restoreFormValues(); // Add failed, restore form values
				}
		}

		// Set up Breadcrumb
		$this->setupBreadcrumb();

		// Render row based on row type
		$this->RowType = ROWTYPE_ADD; // Render add type

		// Render row
		$this->resetAttributes();
		$this->renderRow();
	}

	// Get upload files
	protected function getUploadFiles()
	{
		global $CurrentForm, $Language;
	}

	// Load default values
	protected function loadDefaultValues()
	{
		$this->id->CurrentValue = NULL;
		$this->id->OldValue = $this->id->CurrentValue;
		$this->att_numb->CurrentValue = 0;
		$this->sent_numb->CurrentValue = 0;
		$this->contact_numb->CurrentValue = 0;
		$this->inc_in_listings_numb->CurrentValue = 0;
		$this->visit_time->CurrentValue = 0;
		$this->visit_date->CurrentValue = NULL;
		$this->visit_date->OldValue = $this->visit_date->CurrentValue;
		$this->vids_numb->CurrentValue = 0;
	}

	// Load form values
	protected function loadFormValues()
	{

		// Load from form
		global $CurrentForm;

		// Check field name 'att_numb' first before field var 'x_att_numb'
		$val = $CurrentForm->hasValue("att_numb") ? $CurrentForm->getValue("att_numb") : $CurrentForm->getValue("x_att_numb");
		if (!$this->att_numb->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->att_numb->Visible = FALSE; // Disable update for API request
			else
				$this->att_numb->setFormValue($val);
		}

		// Check field name 'sent_numb' first before field var 'x_sent_numb'
		$val = $CurrentForm->hasValue("sent_numb") ? $CurrentForm->getValue("sent_numb") : $CurrentForm->getValue("x_sent_numb");
		if (!$this->sent_numb->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->sent_numb->Visible = FALSE; // Disable update for API request
			else
				$this->sent_numb->setFormValue($val);
		}

		// Check field name 'contact_numb' first before field var 'x_contact_numb'
		$val = $CurrentForm->hasValue("contact_numb") ? $CurrentForm->getValue("contact_numb") : $CurrentForm->getValue("x_contact_numb");
		if (!$this->contact_numb->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->contact_numb->Visible = FALSE; // Disable update for API request
			else
				$this->contact_numb->setFormValue($val);
		}

		// Check field name 'inc_in_listings_numb' first before field var 'x_inc_in_listings_numb'
		$val = $CurrentForm->hasValue("inc_in_listings_numb") ? $CurrentForm->getValue("inc_in_listings_numb") : $CurrentForm->getValue("x_inc_in_listings_numb");
		if (!$this->inc_in_listings_numb->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->inc_in_listings_numb->Visible = FALSE; // Disable update for API request
			else
				$this->inc_in_listings_numb->setFormValue($val);
		}

		// Check field name 'visit_time' first before field var 'x_visit_time'
		$val = $CurrentForm->hasValue("visit_time") ? $CurrentForm->getValue("visit_time") : $CurrentForm->getValue("x_visit_time");
		if (!$this->visit_time->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->visit_time->Visible = FALSE; // Disable update for API request
			else
				$this->visit_time->setFormValue($val);
		}

		// Check field name 'visit_date' first before field var 'x_visit_date'
		$val = $CurrentForm->hasValue("visit_date") ? $CurrentForm->getValue("visit_date") : $CurrentForm->getValue("x_visit_date");
		if (!$this->visit_date->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->visit_date->Visible = FALSE; // Disable update for API request
			else
				$this->visit_date->setFormValue($val);
			$this->visit_date->CurrentValue = UnFormatDateTime($this->visit_date->CurrentValue, 0);
		}

		// Check field name 'vids_numb' first before field var 'x_vids_numb'
		$val = $CurrentForm->hasValue("vids_numb") ? $CurrentForm->getValue("vids_numb") : $CurrentForm->getValue("x_vids_numb");
		if (!$this->vids_numb->IsDetailKey) {
			if (IsApi() && $val === NULL)
				$this->vids_numb->Visible = FALSE; // Disable update for API request
			else
				$this->vids_numb->setFormValue($val);
		}

		// Check field name 'id' first before field var 'x_id'
		$val = $CurrentForm->hasValue("id") ? $CurrentForm->getValue("id") : $CurrentForm->getValue("x_id");
	}

	// Restore form values
	public function restoreFormValues()
	{
		global $CurrentForm;
		$this->att_numb->CurrentValue = $this->att_numb->FormValue;
		$this->sent_numb->CurrentValue = $this->sent_numb->FormValue;
		$this->contact_numb->CurrentValue = $this->contact_numb->FormValue;
		$this->inc_in_listings_numb->CurrentValue = $this->inc_in_listings_numb->FormValue;
		$this->visit_time->CurrentValue = $this->visit_time->FormValue;
		$this->visit_date->CurrentValue = $this->visit_date->FormValue;
		$this->visit_date->CurrentValue = UnFormatDateTime($this->visit_date->CurrentValue, 0);
		$this->vids_numb->CurrentValue = $this->vids_numb->FormValue;
	}

	// Load row based on key values
	public function loadRow()
	{
		global $Security, $Language;
		$filter = $this->getRecordFilter();

		// Call Row Selecting event
		$this->Row_Selecting($filter);

		// Load SQL based on filter
		$this->CurrentFilter = $filter;
		$sql = $this->getCurrentSql();
		$conn = $this->getConnection();
		$res = FALSE;
		$rs = LoadRecordset($sql, $conn);
		if ($rs && !$rs->EOF) {
			$res = TRUE;
			$this->loadRowValues($rs); // Load row values
			$rs->close();
		}
		return $res;
	}

	// Load row values from recordset
	public function loadRowValues($rs = NULL)
	{
		if ($rs && !$rs->EOF)
			$row = $rs->fields;
		else
			$row = $this->newRow();

		// Call Row Selected event
		$this->Row_Selected($row);
		if (!$rs || $rs->EOF)
			return;
		$this->id->setDbValue($row['id']);
		$this->att_numb->setDbValue($row['att_numb']);
		$this->sent_numb->setDbValue($row['sent_numb']);
		$this->contact_numb->setDbValue($row['contact_numb']);
		$this->inc_in_listings_numb->setDbValue($row['inc_in_listings_numb']);
		$this->visit_time->setDbValue($row['visit_time']);
		$this->visit_date->setDbValue($row['visit_date']);
		$this->vids_numb->setDbValue($row['vids_numb']);
	}

	// Return a row with default values
	protected function newRow()
	{
		$this->loadDefaultValues();
		$row = [];
		$row['id'] = $this->id->CurrentValue;
		$row['att_numb'] = $this->att_numb->CurrentValue;
		$row['sent_numb'] = $this->sent_numb->CurrentValue;
		$row['contact_numb'] = $this->contact_numb->CurrentValue;
		$row['inc_in_listings_numb'] = $this->inc_in_listings_numb->CurrentValue;
		$row['visit_time'] = $this->visit_time->CurrentValue;
		$row['visit_date'] = $this->visit_date->CurrentValue;
		$row['vids_numb'] = $this->vids_numb->CurrentValue;
		return $row;
	}

	// Load old record
	protected function loadOldRecord()
	{

		// Load key values from Session
		$validKey = TRUE;
		if (strval($this->getKey("id")) != "")
			$this->id->OldValue = $this->getKey("id"); // id
		else
			$validKey = FALSE;

		// Load old record
		$this->OldRecordset = NULL;
		if ($validKey) {
			$this->CurrentFilter = $this->getRecordFilter();
			$sql = $this->getCurrentSql();
			$conn = $this->getConnection();
			$this->OldRecordset = LoadRecordset($sql, $conn);
		}
		$this->loadRowValues($this->OldRecordset); // Load row values
		return $validKey;
	}

	// Render row values based on field settings
	public function renderRow()
	{
		global $Security, $Language, $CurrentLanguage;

		// Initialize URLs
		// Call Row_Rendering event

		$this->Row_Rendering();

		// Common render codes for all row types
		// id
		// att_numb
		// sent_numb
		// contact_numb
		// inc_in_listings_numb
		// visit_time
		// visit_date
		// vids_numb

		if ($this->RowType == ROWTYPE_VIEW) { // View row

			// id
			$this->id->ViewValue = $this->id->CurrentValue;
			$this->id->ViewCustomAttributes = "";

			// att_numb
			$this->att_numb->ViewValue = $this->att_numb->CurrentValue;
			$this->att_numb->ViewValue = FormatNumber($this->att_numb->ViewValue, 0, -2, -2, -2);
			$this->att_numb->ViewCustomAttributes = "";

			// sent_numb
			$this->sent_numb->ViewValue = $this->sent_numb->CurrentValue;
			$this->sent_numb->ViewValue = FormatNumber($this->sent_numb->ViewValue, 0, -2, -2, -2);
			$this->sent_numb->ViewCustomAttributes = "";

			// contact_numb
			$this->contact_numb->ViewValue = $this->contact_numb->CurrentValue;
			$this->contact_numb->ViewValue = FormatNumber($this->contact_numb->ViewValue, 0, -2, -2, -2);
			$this->contact_numb->ViewCustomAttributes = "";

			// inc_in_listings_numb
			$this->inc_in_listings_numb->ViewValue = $this->inc_in_listings_numb->CurrentValue;
			$this->inc_in_listings_numb->ViewValue = FormatNumber($this->inc_in_listings_numb->ViewValue, 0, -2, -2, -2);
			$this->inc_in_listings_numb->ViewCustomAttributes = "";

			// visit_time
			$this->visit_time->ViewValue = $this->visit_time->CurrentValue;
			$this->visit_time->ViewValue = FormatNumber($this->visit_time->ViewValue, 0, -2, -2, -2);
			$this->visit_time->ViewCustomAttributes = "";

			// visit_date
			$this->visit_date->ViewValue = $this->visit_date->CurrentValue;
			$this->visit_date->ViewValue = FormatDateTime($this->visit_date->ViewValue, 0);
			$this->visit_date->ViewCustomAttributes = "";

			// vids_numb
			$this->vids_numb->ViewValue = $this->vids_numb->CurrentValue;
			$this->vids_numb->ViewValue = FormatNumber($this->vids_numb->ViewValue, 0, -2, -2, -2);
			$this->vids_numb->ViewCustomAttributes = "";

			// att_numb
			$this->att_numb->LinkCustomAttributes = "";
			$this->att_numb->HrefValue = "";
			$this->att_numb->TooltipValue = "";

			// sent_numb
			$this->sent_numb->LinkCustomAttributes = "";
			$this->sent_numb->HrefValue = "";
			$this->sent_numb->TooltipValue = "";

			// contact_numb
			$this->contact_numb->LinkCustomAttributes = "";
			$this->contact_numb->HrefValue = "";
			$this->contact_numb->TooltipValue = "";

			// inc_in_listings_numb
			$this->inc_in_listings_numb->LinkCustomAttributes = "";
			$this->inc_in_listings_numb->HrefValue = "";
			$this->inc_in_listings_numb->TooltipValue = "";

			// visit_time
			$this->visit_time->LinkCustomAttributes = "";
			$this->visit_time->HrefValue = "";
			$this->visit_time->TooltipValue = "";

			// visit_date
			$this->visit_date->LinkCustomAttributes = "";
			$this->visit_date->HrefValue = "";
			$this->visit_date->TooltipValue = "";

			// vids_numb
			$this->vids_numb->LinkCustomAttributes = "";
			$this->vids_numb->HrefValue = "";
			$this->vids_numb->TooltipValue = "";
		} elseif ($this->RowType == ROWTYPE_ADD) { // Add row

			// att_numb
			$this->att_numb->EditAttrs["class"] = "form-control";
			$this->att_numb->EditCustomAttributes = "";
			$this->att_numb->EditValue = HtmlEncode($this->att_numb->CurrentValue);
			$this->att_numb->PlaceHolder = RemoveHtml($this->att_numb->caption());

			// sent_numb
			$this->sent_numb->EditAttrs["class"] = "form-control";
			$this->sent_numb->EditCustomAttributes = "";
			$this->sent_numb->EditValue = HtmlEncode($this->sent_numb->CurrentValue);
			$this->sent_numb->PlaceHolder = RemoveHtml($this->sent_numb->caption());

			// contact_numb
			$this->contact_numb->EditAttrs["class"] = "form-control";
			$this->contact_numb->EditCustomAttributes = "";
			$this->contact_numb->EditValue = HtmlEncode($this->contact_numb->CurrentValue);
			$this->contact_numb->PlaceHolder = RemoveHtml($this->contact_numb->caption());

			// inc_in_listings_numb
			$this->inc_in_listings_numb->EditAttrs["class"] = "form-control";
			$this->inc_in_listings_numb->EditCustomAttributes = "";
			$this->inc_in_listings_numb->EditValue = HtmlEncode($this->inc_in_listings_numb->CurrentValue);
			$this->inc_in_listings_numb->PlaceHolder = RemoveHtml($this->inc_in_listings_numb->caption());

			// visit_time
			$this->visit_time->EditAttrs["class"] = "form-control";
			$this->visit_time->EditCustomAttributes = "";
			$this->visit_time->EditValue = HtmlEncode($this->visit_time->CurrentValue);
			$this->visit_time->PlaceHolder = RemoveHtml($this->visit_time->caption());

			// visit_date
			$this->visit_date->EditAttrs["class"] = "form-control";
			$this->visit_date->EditCustomAttributes = "";
			$this->visit_date->EditValue = HtmlEncode(FormatDateTime($this->visit_date->CurrentValue, 8));
			$this->visit_date->PlaceHolder = RemoveHtml($this->visit_date->caption());

			// vids_numb
			$this->vids_numb->EditAttrs["class"] = "form-control";
			$this->vids_numb->EditCustomAttributes = "";
			$this->vids_numb->EditValue = HtmlEncode($this->vids_numb->CurrentValue);
			$this->vids_numb->PlaceHolder = RemoveHtml($this->vids_numb->caption());

			// Add refer script
			// att_numb

			$this->att_numb->LinkCustomAttributes = "";
			$this->att_numb->HrefValue = "";

			// sent_numb
			$this->sent_numb->LinkCustomAttributes = "";
			$this->sent_numb->HrefValue = "";

			// contact_numb
			$this->contact_numb->LinkCustomAttributes = "";
			$this->contact_numb->HrefValue = "";

			// inc_in_listings_numb
			$this->inc_in_listings_numb->LinkCustomAttributes = "";
			$this->inc_in_listings_numb->HrefValue = "";

			// visit_time
			$this->visit_time->LinkCustomAttributes = "";
			$this->visit_time->HrefValue = "";

			// visit_date
			$this->visit_date->LinkCustomAttributes = "";
			$this->visit_date->HrefValue = "";

			// vids_numb
			$this->vids_numb->LinkCustomAttributes = "";
			$this->vids_numb->HrefValue = "";
		}
		if ($this->RowType == ROWTYPE_ADD || $this->RowType == ROWTYPE_EDIT || $this->RowType == ROWTYPE_SEARCH) // Add/Edit/Search row
			$this->setupFieldTitles();

		// Call Row Rendered event
		if ($this->RowType != ROWTYPE_AGGREGATEINIT)
			$this->Row_Rendered();
	}

	// Validate form
	protected function validateForm()
	{
		global $Language, $FormError;

		// Initialize form error message
		$FormError = "";

		// Check if validation required
		if (!Config("SERVER_VALIDATE"))
			return ($FormError == "");
		if ($this->att_numb->Required) {
			if (!$this->att_numb->IsDetailKey && $this->att_numb->FormValue != NULL && $this->att_numb->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->att_numb->caption(), $this->att_numb->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->att_numb->FormValue)) {
			AddMessage($FormError, $this->att_numb->errorMessage());
		}
		if ($this->sent_numb->Required) {
			if (!$this->sent_numb->IsDetailKey && $this->sent_numb->FormValue != NULL && $this->sent_numb->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->sent_numb->caption(), $this->sent_numb->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->sent_numb->FormValue)) {
			AddMessage($FormError, $this->sent_numb->errorMessage());
		}
		if ($this->contact_numb->Required) {
			if (!$this->contact_numb->IsDetailKey && $this->contact_numb->FormValue != NULL && $this->contact_numb->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->contact_numb->caption(), $this->contact_numb->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->contact_numb->FormValue)) {
			AddMessage($FormError, $this->contact_numb->errorMessage());
		}
		if ($this->inc_in_listings_numb->Required) {
			if (!$this->inc_in_listings_numb->IsDetailKey && $this->inc_in_listings_numb->FormValue != NULL && $this->inc_in_listings_numb->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->inc_in_listings_numb->caption(), $this->inc_in_listings_numb->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->inc_in_listings_numb->FormValue)) {
			AddMessage($FormError, $this->inc_in_listings_numb->errorMessage());
		}
		if ($this->visit_time->Required) {
			if (!$this->visit_time->IsDetailKey && $this->visit_time->FormValue != NULL && $this->visit_time->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->visit_time->caption(), $this->visit_time->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->visit_time->FormValue)) {
			AddMessage($FormError, $this->visit_time->errorMessage());
		}
		if ($this->visit_date->Required) {
			if (!$this->visit_date->IsDetailKey && $this->visit_date->FormValue != NULL && $this->visit_date->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->visit_date->caption(), $this->visit_date->RequiredErrorMessage));
			}
		}
		if (!CheckDate($this->visit_date->FormValue)) {
			AddMessage($FormError, $this->visit_date->errorMessage());
		}
		if ($this->vids_numb->Required) {
			if (!$this->vids_numb->IsDetailKey && $this->vids_numb->FormValue != NULL && $this->vids_numb->FormValue == "") {
				AddMessage($FormError, str_replace("%s", $this->vids_numb->caption(), $this->vids_numb->RequiredErrorMessage));
			}
		}
		if (!CheckInteger($this->vids_numb->FormValue)) {
			AddMessage($FormError, $this->vids_numb->errorMessage());
		}

		// Return validate result
		$validateForm = ($FormError == "");

		// Call Form_CustomValidate event
		$formCustomError = "";
		$validateForm = $validateForm && $this->Form_CustomValidate($formCustomError);
		if ($formCustomError != "") {
			AddMessage($FormError, $formCustomError);
		}
		return $validateForm;
	}

	// Add record
	protected function addRow($rsold = NULL)
	{
		global $Language, $Security;
		$conn = $this->getConnection();

		// Load db values from rsold
		$this->loadDbValues($rsold);
		if ($rsold) {
		}
		$rsnew = [];

		// att_numb
		$this->att_numb->setDbValueDef($rsnew, $this->att_numb->CurrentValue, 0, strval($this->att_numb->CurrentValue) == "");

		// sent_numb
		$this->sent_numb->setDbValueDef($rsnew, $this->sent_numb->CurrentValue, 0, strval($this->sent_numb->CurrentValue) == "");

		// contact_numb
		$this->contact_numb->setDbValueDef($rsnew, $this->contact_numb->CurrentValue, 0, strval($this->contact_numb->CurrentValue) == "");

		// inc_in_listings_numb
		$this->inc_in_listings_numb->setDbValueDef($rsnew, $this->inc_in_listings_numb->CurrentValue, 0, strval($this->inc_in_listings_numb->CurrentValue) == "");

		// visit_time
		$this->visit_time->setDbValueDef($rsnew, $this->visit_time->CurrentValue, 0, strval($this->visit_time->CurrentValue) == "");

		// visit_date
		$this->visit_date->setDbValueDef($rsnew, UnFormatDateTime($this->visit_date->CurrentValue, 0), NULL, FALSE);

		// vids_numb
		$this->vids_numb->setDbValueDef($rsnew, $this->vids_numb->CurrentValue, 0, strval($this->vids_numb->CurrentValue) == "");

		// Call Row Inserting event
		$rs = ($rsold) ? $rsold->fields : NULL;
		$insertRow = $this->Row_Inserting($rs, $rsnew);
		if ($insertRow) {
			$conn->raiseErrorFn = Config("ERROR_FUNC");
			$addRow = $this->insert($rsnew);
			$conn->raiseErrorFn = "";
			if ($addRow) {
			}
		} else {
			if ($this->getSuccessMessage() != "" || $this->getFailureMessage() != "") {

				// Use the message, do nothing
			} elseif ($this->CancelMessage != "") {
				$this->setFailureMessage($this->CancelMessage);
				$this->CancelMessage = "";
			} else {
				$this->setFailureMessage($Language->phrase("InsertCancelled"));
			}
			$addRow = FALSE;
		}
		if ($addRow) {

			// Call Row Inserted event
			$rs = ($rsold) ? $rsold->fields : NULL;
			$this->Row_Inserted($rs, $rsnew);
		}

		// Clean upload path if any
		if ($addRow) {
		}

		// Write JSON for API request
		if (IsApi() && $addRow) {
			$row = $this->getRecordsFromRecordset([$rsnew], TRUE);
			WriteJson(["success" => TRUE, $this->TableVar => $row]);
		}
		return $addRow;
	}

	// Set up Breadcrumb
	protected function setupBreadcrumb()
	{
		global $Breadcrumb, $Language;
		$Breadcrumb = new Breadcrumb();
		$url = substr(CurrentUrl(), strrpos(CurrentUrl(), "/")+1);
		$Breadcrumb->add("list", $this->TableVar, $this->addMasterUrl("wp_wpl_properties2list.php"), "", $this->TableVar, TRUE);
		$pageId = ($this->isCopy()) ? "Copy" : "Add";
		$Breadcrumb->add("add", $pageId, $url);
	}

	// Setup lookup options
	public function setupLookupOptions($fld)
	{
		if ($fld->Lookup !== NULL && $fld->Lookup->Options === NULL) {

			// Get default connection and filter
			$conn = $this->getConnection();
			$lookupFilter = "";

			// No need to check any more
			$fld->Lookup->Options = [];

			// Set up lookup SQL and connection
			switch ($fld->FieldVar) {
				default:
					$lookupFilter = "";
					break;
			}

			// Always call to Lookup->getSql so that user can setup Lookup->Options in Lookup_Selecting server event
			$sql = $fld->Lookup->getSql(FALSE, "", $lookupFilter, $this);

			// Set up lookup cache
			if ($fld->UseLookupCache && $sql != "" && count($fld->Lookup->Options) == 0) {
				$totalCnt = $this->getRecordCount($sql, $conn);
				if ($totalCnt > $fld->LookupCacheCount) // Total count > cache count, do not cache
					return;
				$rs = $conn->execute($sql);
				$ar = [];
				while ($rs && !$rs->EOF) {
					$row = &$rs->fields;

					// Format the field values
					switch ($fld->FieldVar) {
					}
					$ar[strval($row[0])] = $row;
					$rs->moveNext();
				}
				if ($rs)
					$rs->close();
				$fld->Lookup->Options = $ar;
			}
		}
	}

	// 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
	// $type = ''|'success'|'failure'|'warning'
	function Message_Showing(&$msg, $type) {
		if ($type == 'success') {

			//$msg = "your success message";
		} elseif ($type == 'failure') {

			//$msg = "your failure message";
		} elseif ($type == 'warning') {

			//$msg = "your warning message";
		} else {

			//$msg = "your message";
		}
	}

	// Page Render event
	function Page_Render() {

		//echo "Page Render";
	}

	// Page Data Rendering event
	function Page_DataRendering(&$header) {

		// Example:
		//$header = "your header";

	}

	// Page Data Rendered event
	function Page_DataRendered(&$footer) {

		// Example:
		//$footer = "your footer";

	}

	// Form Custom Validate event
	function Form_CustomValidate(&$customError) {

		// Return error message in CustomError
		return TRUE;
	}
} // End class
?>

Hry