26 lines
553 B
PHP
Raw Permalink Normal View History

2024-05-29 12:29:53 +02:00
<?php
2024-06-03 09:43:40 +02:00
2024-05-29 12:29:53 +02:00
class User_model extends CI_Model {
2024-06-03 09:43:40 +02:00
public function __construct() {
2024-05-29 12:29:53 +02:00
$this->load->database();
}
2024-06-03 09:43:40 +02:00
public function get_user_by_email($email) {
2024-06-03 09:47:02 +02:00
$query = $this->db->get_where('user', ['email' => $email]);
2024-06-03 09:43:40 +02:00
return $query->row_array();
2024-05-29 12:29:53 +02:00
}
2024-06-03 09:43:40 +02:00
public function create_user($data) {
2024-06-03 09:47:02 +02:00
return $this->db->insert('user', $data);
2024-05-29 12:29:53 +02:00
}
2024-06-19 15:47:11 +02:00
public function emailExists($email) {
$this->db->where('email', $email);
$query = $this->db->get('user');
return $query->num_rows() > 0;
}
2024-05-29 12:29:53 +02:00
}
2024-06-03 09:43:40 +02:00
2024-05-29 12:29:53 +02:00
?>