2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2016-01-09 23:29:28 +02:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2016-01-09 23:29:28 +02:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Customers model
|
|
|
|
*
|
|
|
|
* Handles all the database operations of the customer resource.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
|
|
|
* @package Models
|
|
|
|
*/
|
2020-11-16 11:29:36 +03:00
|
|
|
class Customers_model extends EA_Model {
|
2020-11-12 15:51:10 +03:00
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Save (insert or update) a customer.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array $customer Associative array with the customer data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return int Returns the customer ID.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function save(array $customer): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2016-01-09 23:29:28 +02:00
|
|
|
$this->validate($customer);
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if ($this->exists($customer) && empty($customer['id']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
|
|
|
$customer['id'] = $this->find_record_id($customer);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if (empty($customer['id']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->insert($customer);
|
2018-01-23 12:08:37 +03:00
|
|
|
}
|
|
|
|
else
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->update($customer);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Validate the customer data.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array $customer Associative array with the customer data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function validate(array $customer): void
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
// If a customer ID is provided then check whether the record really exists in the database.
|
|
|
|
if ( ! empty($customer['id']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$count = $this->db->get_where('users', ['id' => $customer['id']])->num_rows();
|
2020-12-05 12:38:57 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if ( ! $count)
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The provided customer ID does not exist in the database: ' . $customer['id']);
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
// Make sure all required fields are provided.
|
|
|
|
$phone_number_required = filter_var(setting('require_phone_number'), FILTER_VALIDATE_BOOLEAN);
|
2020-04-22 22:48:56 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if (
|
|
|
|
empty($customer['first_name'])
|
|
|
|
|| empty($customer['last_name'])
|
|
|
|
|| empty($customer['email'])
|
|
|
|
|| (empty($customer['phone_number']) && $phone_number_required)
|
|
|
|
)
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('Not all required fields are provided: ' . print_r($customer, TRUE));
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
// Validate the email address.
|
2020-04-22 22:48:56 +03:00
|
|
|
if ( ! filter_var($customer['email'], FILTER_VALIDATE_EMAIL))
|
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('Invalid email address provided: ' . $customer['email']);
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
// Make sure the email address is unique.
|
|
|
|
$customer_id = $customer['id'] ?? NULL;
|
2020-04-22 22:48:56 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
$count = $this
|
|
|
|
->db
|
|
|
|
->select()
|
2020-04-23 21:48:20 +03:00
|
|
|
->from('users')
|
2020-05-02 13:51:06 +03:00
|
|
|
->join('roles', 'roles.id = users.id_roles', 'inner')
|
2020-04-23 21:48:20 +03:00
|
|
|
->where('roles.slug', DB_SLUG_CUSTOMER)
|
|
|
|
->where('users.email', $customer['email'])
|
2020-12-05 12:38:57 +03:00
|
|
|
->where('users.id !=', $customer_id)
|
2020-04-22 22:48:56 +03:00
|
|
|
->get()
|
|
|
|
->num_rows();
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if ($count > 0)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The provided email address is already in use, please use a different one.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Insert a new customer into the database.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array $customer Associative array with the customer data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return int Returns the customer ID.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws RuntimeException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
protected function insert(array $customer): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$customer['id_roles'] = $this->get_customer_role_id();
|
|
|
|
|
|
|
|
if ( ! $this->db->insert('users', $customer))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new RuntimeException('Could not insert customer.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->db->insert_id();
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Update an existing customer.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array $customer Associative array with the customer data.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return int Returns the customer ID.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws RuntimeException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
protected function update(array $customer): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
if ( ! $this->db->update('users', $customer, ['id' => $customer['id']]))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new RuntimeException('Could not update customer.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $customer['id'];
|
|
|
|
}
|
2017-09-15 14:36:37 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
/**
|
|
|
|
* Remove an existing customer from the database.
|
|
|
|
*
|
|
|
|
* @param int $customer_id Customer ID.
|
|
|
|
*
|
|
|
|
* @throws RuntimeException
|
|
|
|
*/
|
|
|
|
public function delete(int $customer_id): void
|
|
|
|
{
|
|
|
|
if ( ! $this->db->delete('users', ['id' => $customer_id]))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new RuntimeException('Could not delete customer.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Get a specific customer from the database.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param int $customer_id The ID of the record to be returned.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return array Returns an array with the customer data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function find(int $customer_id): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
if ( ! $this->db->get_where('users', ['id' => $customer_id])->num_rows())
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The provided customer ID was not found in the database: ' . $customer_id);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->db->get_where('users', ['id' => $customer_id])->row_array();
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Get a specific field value from the database.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param int $customer_id Customer ID.
|
|
|
|
* @param string $field Name of the value to be returned.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return string Returns the selected customer value from the database.
|
2020-04-22 22:48:56 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2020-04-22 22:48:56 +03:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function value(int $customer_id, string $field): string
|
2020-04-22 22:48:56 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
if (empty($field))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('The field argument is cannot be empty.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($customer_id))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('The customer ID argument cannot be empty.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether the customer exists.
|
|
|
|
$query = $this->db->get_where('users', ['id' => $customer_id]);
|
|
|
|
|
|
|
|
if ( ! $query->num_rows())
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('The provided customer ID was not found in the database: ' . $customer_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the required field is part of the customer data.
|
|
|
|
$customer = $query->row_array();
|
2017-09-15 14:36:37 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if ( ! array_key_exists($field, $customer))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The requested field was not found in the customer data: ' . $field);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $customer[$field];
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Get all customers that match the provided criteria.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array|string $where Where conditions.
|
|
|
|
* @param int|null $limit Record limit.
|
|
|
|
* @param int|null $offset Record offset.
|
|
|
|
* @param string|null $order_by Order by.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return array Returns an array of customers.
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function get($where = NULL, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$role_id = $this->get_customer_role_id();
|
|
|
|
|
|
|
|
if ($where !== NULL)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$this->db->where($where);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if ($order_by !== NULL)
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$this->db->order_by($order_by);
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->db->get_where('users', ['id_roles' => $role_id], $limit, $offset)->result_array();
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Get the customer role ID.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return int Returns the role ID.
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function get_customer_role_id(): int
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$role = $this->db->get_where('roles', ['slug' => DB_SLUG_ADMIN])->row_array();
|
|
|
|
|
|
|
|
if (empty($role))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new RuntimeException('The admin role was not found in the database.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
2021-10-27 11:04:15 +03:00
|
|
|
|
|
|
|
return $role['id'];
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Check if a particular customer record already exists in the database.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @param array $customer Associative array with the customer data.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return bool Returns whether there is a record matching the provided one or not.
|
2017-09-08 15:03:45 +03:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function exists(array $customer): bool
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
if (empty($customer['email']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The customer email was not provided: ' . print_r($customer, TRUE));
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
$count = $this
|
|
|
|
->db
|
|
|
|
->select()
|
|
|
|
->from('users')
|
|
|
|
->join('roles', 'roles.id = users.id_roles', 'inner')
|
|
|
|
->where('users.email', $customer['email'])
|
|
|
|
->where('roles.slug', DB_SLUG_CUSTOMER)
|
|
|
|
->get()
|
|
|
|
->num_rows();
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $count > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the record ID of a customer.
|
|
|
|
*
|
|
|
|
* @param array $customer Associative array with the customer data.
|
|
|
|
*
|
|
|
|
* @return int Returns the ID of the record that matches the provided argument.
|
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function find_record_id(array $customer): int
|
|
|
|
{
|
|
|
|
if (empty($customer['email']))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('The customer email was not provided: ' . print_r($customer, TRUE));
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
$customer = $this
|
|
|
|
->db
|
|
|
|
->select('users.id')
|
|
|
|
->from('users')
|
|
|
|
->join('roles', 'roles.id = users.id_roles', 'inner')
|
|
|
|
->where('users.email', $customer['email'])
|
|
|
|
->where('roles.slug', DB_SLUG_CUSTOMER)
|
|
|
|
->get()
|
|
|
|
->row_array();
|
2020-12-05 12:38:57 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
if (empty($customer))
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
throw new InvalidArgumentException('Could not find customer record id.');
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $customer['id'];
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Get the query builder interface, configured for use with the users (customer-filtered) table.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @return CI_DB_query_builder
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function query(): CI_DB_query_builder
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
$role_id = $this->get_customer_role_id();
|
2020-04-06 21:34:32 +03:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
return $this->db->from('users')->where('id_roles', $role_id);
|
|
|
|
}
|
2016-01-09 23:29:28 +02:00
|
|
|
|
2021-10-27 11:04:15 +03:00
|
|
|
/**
|
|
|
|
* Search customers by the provided keyword.
|
|
|
|
*
|
|
|
|
* @param string $keyword Search keyword.
|
|
|
|
* @param int|null $limit Record limit.
|
|
|
|
* @param int|null $offset Record offset.
|
|
|
|
* @param string|null $order_by Order by.
|
|
|
|
*
|
|
|
|
* @return array Returns an array of customers.
|
|
|
|
*/
|
|
|
|
public function search(string $keyword, int $limit = NULL, int $offset = NULL, string $order_by = NULL): array
|
|
|
|
{
|
|
|
|
$role_id = $this->get_customer_role_id();
|
|
|
|
|
|
|
|
return $this
|
|
|
|
->db
|
|
|
|
->select()
|
|
|
|
->from('users')
|
|
|
|
->where('id_roles', $role_id)
|
|
|
|
->like('first_name', $keyword)
|
|
|
|
->or_like('last_name', $keyword)
|
|
|
|
->or_like('email', $keyword)
|
|
|
|
->or_like('phone_number', $keyword)
|
|
|
|
->or_like('mobile_number', $keyword)
|
|
|
|
->or_like('address', $keyword)
|
|
|
|
->or_like('city', $keyword)
|
|
|
|
->or_like('state', $keyword)
|
|
|
|
->or_like('zip_code', $keyword)
|
|
|
|
->or_like('notes', $keyword)
|
|
|
|
->limit($limit)
|
|
|
|
->offset($offset)
|
|
|
|
->order_by($order_by)
|
|
|
|
->get()
|
|
|
|
->result_array();
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-27 11:04:15 +03:00
|
|
|
* Attach related resources to a customer.
|
|
|
|
*
|
|
|
|
* @param array $customer Associative array with the customer data.
|
|
|
|
* @param array $resources Resource names to be attached.
|
2016-01-09 23:29:28 +02:00
|
|
|
*
|
2021-10-27 11:04:15 +03:00
|
|
|
* @throws InvalidArgumentException
|
2016-01-09 23:29:28 +02:00
|
|
|
*/
|
2021-10-27 11:04:15 +03:00
|
|
|
public function attach(array &$customer, array $resources): void
|
2017-09-15 14:36:37 +03:00
|
|
|
{
|
2021-10-27 11:04:15 +03:00
|
|
|
// Customers do not currently have any related resources.
|
2016-01-09 23:29:28 +02:00
|
|
|
}
|
|
|
|
}
|