1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Accommodation_Management/models/AccomodationReservation.php

69 lines
1.8 KiB
PHP
Raw Normal View History

2021-01-14 19:01:32 +01:00
<?php
class AccomodationReservation extends Model
{
private $data;
public function __construct($data = null)
{
parent::__construct();
$_col = get_class()::getColumns();
if($data !== null){
forEach($data as $key=>$value){
if(!key_exists($key, $_col)){
throw new Exception('Invalid data entry');
}else{
$this->data[$key] = $value;
}
}
}
return $this;
}
/*
* Getters
*/
public function getUserEmail(): string
{
if(isset($this->data['UserEmail']))
return $this->data['UserEmail'];
return false;
}
public function getAccomodationId(): string
{
if(isset($this->data['AccomodationId']))
return $this->data['AccomodationId'];
return false;
}
public function getPeopleCount(): string
{
if(isset($this->data['peopleCount']))
return $this->data['peopleCount'];
return false;
}
public function getStartDate(): string
{
if(isset($this->data['startDate']))
return $this->data['startDate'];
return false;
}
public function getEndDate(): string
{
if(isset($this->data['endDate']))
return $this->data['endDate'];
return false;
}
public static function fetchByAccomodationId(int $id)
{
$data = AccomodationReservation::fetch(array(['AccomodationId','=', $id]));
return $data;
}
public static function fetchByUserEmail(string $email){
$data = AccomodationReservation::fetch(array(['UserEmail','=', $email]));
if(count($data) == 1){
return $data[0];
}
return false;
}
}