2024-05-23 10:33:41 +02:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Utilisateur_model extends CI_Model {
|
|
|
|
|
|
|
|
public function __construct(){
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->database();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function insert_user($data){
|
|
|
|
return $this->db->insert('utilisateur', $data);
|
|
|
|
}
|
2024-05-23 10:54:24 +02:00
|
|
|
|
|
|
|
public function get_user($email) {
|
|
|
|
$query = $this->db->get_where('utilisateur', array('email' => $email));
|
|
|
|
return $query->row();
|
|
|
|
}
|
2024-05-25 00:10:47 +02:00
|
|
|
|
|
|
|
public function get_user_by_id($id) {
|
|
|
|
$query = $this->db->get_where('utilisateur', array('id' => $id));
|
|
|
|
return $query->row();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function update_user($id, $data){
|
|
|
|
$this->db->where('id', $id);
|
|
|
|
return $this->db->update('utilisateur', $data);
|
|
|
|
}
|
2024-05-25 02:42:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function insert_avis($data) {
|
|
|
|
return $this->db->insert('avis', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_recent_avis($limit = 3) {
|
|
|
|
$this->db->select('avis.*, utilisateur.nom, utilisateur.prenom');
|
|
|
|
$this->db->from('avis');
|
|
|
|
$this->db->join('utilisateur', 'avis.utilisateur_id = utilisateur.id');
|
|
|
|
$this->db->order_by('date_creation', 'DESC');
|
|
|
|
$this->db->limit($limit);
|
|
|
|
$query = $this->db->get();
|
|
|
|
return $query->result();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_avis($utilisateur_id) {
|
|
|
|
$this->db->select('*');
|
|
|
|
$this->db->from('avis');
|
|
|
|
$this->db->where('utilisateur_id', $utilisateur_id);
|
|
|
|
$query = $this->db->get();
|
|
|
|
return $query->result();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function supprimer_avis($avis_id) {
|
|
|
|
return $this->db->delete('avis', array('id' => $avis_id));
|
|
|
|
}
|
|
|
|
|
2024-05-23 10:33:41 +02:00
|
|
|
}
|
2024-05-25 00:10:47 +02:00
|
|
|
?>
|