2013-05-08 17:31:17 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
class Providers_Model extends CI_Model {
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
2013-04-17 00:37:36 +03:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
/**
|
|
|
|
* Get a specific row from the providers table.
|
|
|
|
*
|
|
|
|
* @param int $provider_id The record's id to be returned.
|
|
|
|
* @return array Returns an associative array with the selected
|
|
|
|
* record's data. Each key has the same name as the database
|
|
|
|
* field names.
|
|
|
|
*/
|
|
|
|
public function get_row($provider_id) {
|
|
|
|
return $this->db->get_where('ea_users', array('id' => $provider_id))->row_array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a specific field value from the database.
|
|
|
|
*
|
|
|
|
* @param string $field_name The field name of the value to be
|
|
|
|
* returned.
|
|
|
|
* @param int $provider_id The selected record's id.
|
|
|
|
* @return string Returns the records value from the database.
|
|
|
|
*/
|
|
|
|
public function get_value($field_name, $provider_id) {
|
|
|
|
return $this->db->get_where('ea_users', array('id' => $provider_id))->row_array()[$field_name];
|
|
|
|
}
|
|
|
|
|
2013-05-08 17:31:17 +03:00
|
|
|
/**
|
|
|
|
* Get all, or specific records from provider's table.
|
|
|
|
*
|
|
|
|
* @example $this->Model->getBatch('id = ' . $recordId);
|
|
|
|
*
|
|
|
|
* @param string $whereClause (OPTIONAL) The WHERE clause of
|
|
|
|
* the query to be executed. DO NOT INCLUDE 'WHERE' KEYWORD.
|
|
|
|
* @return array Returns the rows from the database.
|
|
|
|
*/
|
|
|
|
public function get_batch($where_clause = '') {
|
|
|
|
$providers_role_id = $this->get_providers_role_id();
|
|
|
|
|
|
|
|
if ($where_clause != '') {
|
|
|
|
$this->db->where($where_clause);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->db->where('id_roles', $providers_role_id);
|
|
|
|
|
|
|
|
return $this->db->get('ea_users')->result_array();
|
|
|
|
}
|
|
|
|
|
2013-04-17 00:37:36 +03:00
|
|
|
/**
|
|
|
|
* This method returns the available providers and
|
|
|
|
* the services that can provide.
|
|
|
|
*
|
|
|
|
* @return array Returns an array with the providers
|
|
|
|
* data.
|
|
|
|
*/
|
2013-05-04 00:26:04 +03:00
|
|
|
public function get_available_providers() {
|
2013-04-20 20:20:16 +03:00
|
|
|
$this->db
|
|
|
|
->select('ea_users.*')
|
|
|
|
->from('ea_users')
|
|
|
|
->join('ea_roles', 'ea_roles.id = ea_users.id_roles', 'inner')
|
|
|
|
->where('ea_roles.slug', 'provider');
|
2013-04-17 00:37:36 +03:00
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
$providers = $this->db->get()->result_array();
|
2013-04-17 00:37:36 +03:00
|
|
|
|
|
|
|
foreach($providers as &$provider) {
|
2013-04-20 20:20:16 +03:00
|
|
|
$this->db
|
|
|
|
->select('id_services')
|
|
|
|
->from('ea_services_providers')
|
|
|
|
->where('id_users', $provider['id']);
|
2013-04-17 00:37:36 +03:00
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
$provider_services = $this->db->get()->result_array();
|
2013-04-17 00:37:36 +03:00
|
|
|
|
|
|
|
if (!isset($provider['services'])) {
|
|
|
|
$provider['services'] = array();
|
|
|
|
}
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
foreach($provider_services as $providerService) {
|
2013-04-17 00:37:36 +03:00
|
|
|
$provider['services'][] = $providerService['id_services'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $providers;
|
|
|
|
}
|
2013-05-08 17:31:17 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the providers role id from the database.
|
|
|
|
*
|
|
|
|
* @return int Returns the role id for the customer records.
|
|
|
|
*/
|
|
|
|
public function get_providers_role_id() {
|
|
|
|
return $this->db->get_where('ea_roles', array('slug' => DB_SLUG_PROVIDER))->row()->id;
|
|
|
|
}
|
2013-04-17 00:37:36 +03:00
|
|
|
}
|
2013-05-04 00:26:04 +03:00
|
|
|
|
|
|
|
/* End of file providers_model.php */
|
|
|
|
/* Location: ./application/models/providers_model.php */
|