Type casting for the Services_model.php
This commit is contained in:
parent
791f1e38e4
commit
83777d35ba
1 changed files with 41 additions and 4 deletions
|
@ -19,6 +19,16 @@
|
||||||
* @package Models
|
* @package Models
|
||||||
*/
|
*/
|
||||||
class Services_model extends EA_Model {
|
class Services_model extends EA_Model {
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $casts = [
|
||||||
|
'id' => 'integer',
|
||||||
|
'price' => 'float',
|
||||||
|
'attendants_number' => 'integer',
|
||||||
|
'id_service_categories' => 'boolean',
|
||||||
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save (insert or update) a service.
|
* Save (insert or update) a service.
|
||||||
*
|
*
|
||||||
|
@ -183,7 +193,11 @@ class Services_model extends EA_Model {
|
||||||
throw new InvalidArgumentException('The provided service ID was not found in the database: ' . $service_id);
|
throw new InvalidArgumentException('The provided service ID was not found in the database: ' . $service_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->db->get_where('services', ['id' => $service_id])->row_array();
|
$service = $this->db->get_where('services', ['id' => $service_id])->row_array();
|
||||||
|
|
||||||
|
$this->cast($service);
|
||||||
|
|
||||||
|
return $service;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -219,6 +233,8 @@ class Services_model extends EA_Model {
|
||||||
// Check if the required field is part of the service data.
|
// Check if the required field is part of the service data.
|
||||||
$service = $query->row_array();
|
$service = $query->row_array();
|
||||||
|
|
||||||
|
$this->cast($service);
|
||||||
|
|
||||||
if ( ! array_key_exists($field, $service))
|
if ( ! array_key_exists($field, $service))
|
||||||
{
|
{
|
||||||
throw new InvalidArgumentException('The requested field was not found in the service data: ' . $field);
|
throw new InvalidArgumentException('The requested field was not found in the service data: ' . $field);
|
||||||
|
@ -249,7 +265,14 @@ class Services_model extends EA_Model {
|
||||||
$this->db->order_by($order_by);
|
$this->db->order_by($order_by);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->db->get('services', $limit, $offset)->result_array();
|
$services = $this->db->get('services', $limit, $offset)->result_array();
|
||||||
|
|
||||||
|
foreach ($services as $service)
|
||||||
|
{
|
||||||
|
$this->cast($service);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $services;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -259,7 +282,7 @@ class Services_model extends EA_Model {
|
||||||
*/
|
*/
|
||||||
public function get_available_services(): array
|
public function get_available_services(): array
|
||||||
{
|
{
|
||||||
return $this
|
$services = $this
|
||||||
->db
|
->db
|
||||||
->distinct()
|
->distinct()
|
||||||
->select('services.*, service_categories.name AS category_name, service_categories.id AS category_id')
|
->select('services.*, service_categories.name AS category_name, service_categories.id AS category_id')
|
||||||
|
@ -269,6 +292,13 @@ class Services_model extends EA_Model {
|
||||||
->order_by('name ASC')
|
->order_by('name ASC')
|
||||||
->get()
|
->get()
|
||||||
->result_array();
|
->result_array();
|
||||||
|
|
||||||
|
foreach ($services as $service)
|
||||||
|
{
|
||||||
|
$this->cast($service);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $services;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -293,7 +323,7 @@ class Services_model extends EA_Model {
|
||||||
*/
|
*/
|
||||||
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
||||||
{
|
{
|
||||||
return $this
|
$services = $this
|
||||||
->db
|
->db
|
||||||
->select()
|
->select()
|
||||||
->from('services')
|
->from('services')
|
||||||
|
@ -304,6 +334,13 @@ class Services_model extends EA_Model {
|
||||||
->order_by($order_by)
|
->order_by($order_by)
|
||||||
->get()
|
->get()
|
||||||
->result_array();
|
->result_array();
|
||||||
|
|
||||||
|
foreach ($services as $service)
|
||||||
|
{
|
||||||
|
$this->cast($service);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $services;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue