Uname:
Linux webm016.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software:
Apache
PHP version:
7.4.33 [ PHP INFO ] PHP os:
Linux
Server Ip:
54.36.31.145
Your Ip:
216.73.216.182
User:
homesquasz (91404) | Group:
users (100)
Safe Mode:
OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl
<?php
/*
* Generated by CRUDigniter v3.2
* www.crudigniter.com
*/
class Notifier_model extends CI_Model
{
function __construct()
{
parent::__construct();
}
/*
* Get notifier by id
*/
function get_notifier($id)
{
return $this->db->get_where('notifier',array('id'=>$id))->row_array();
}
/*
* Get all notifier count
*/
function get_all_notifier_count()
{
$this->db->from('notifier');
return $this->db->count_all_results();
}
/*
* Get all notifier
*/
function get_all_notifier($params = array())
{
$this->db->order_by('id', 'desc');
if(isset($params) && !empty($params))
{
$this->db->limit($params['limit'], $params['offset']);
}
$this->db->select("*,(select concat(nom,' ',prenom) from users where notifier.users_id=users.id) as personne, (select concat(nom,' ',prenom) from users where notifier.notifyto=users.id) as notified");
return $this->db->get('notifier')->result_array();
}
function get_notified_by_user_id($id){
$this->db->where("users_id",$id);
$this->db->select("*, (select email from users where notifier.notifyto=users.id) as email");
return $this->db->get('notifier')->result_array();
}
/*
* function to add new notifier
*/
function add_notifier($params)
{
$this->db->insert('notifier',$params);
return $this->db->insert_id();
}
/*
* function to update notifier
*/
function update_notifier($id,$params)
{
$this->db->where('id',$id);
return $this->db->update('notifier',$params);
}
/*
* function to delete notifier
*/
function delete_notifier($id)
{
return $this->db->delete('notifier',array('id'=>$id));
}
}