2024-07-16 12:29:59 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Frontend_model extends CI_Model {
|
2024-07-19 10:46:18 +00:00
|
|
|
public function getforms()
|
|
|
|
{
|
|
|
|
// Get the user_id from session
|
|
|
|
$user_id = $this->session->userdata('user_id');
|
2024-07-22 09:49:37 +00:00
|
|
|
|
2024-07-19 10:46:18 +00:00
|
|
|
// Ensure user_id is set
|
|
|
|
if (!$user_id) {
|
|
|
|
return []; // Return an empty array if user_id is not available
|
|
|
|
}
|
2024-07-22 09:49:37 +00:00
|
|
|
|
|
|
|
// Filter forms by user_id and order by created_at in descending order
|
2024-07-19 10:46:18 +00:00
|
|
|
$this->db->where('user_id', $user_id); // Assuming 'user_id' is the column name in the 'forms' table
|
2024-07-22 09:49:37 +00:00
|
|
|
$this->db->order_by('created_at', 'DESC'); // Order by created_at column, most recent first
|
2024-07-19 10:46:18 +00:00
|
|
|
$query = $this->db->get('forms');
|
|
|
|
|
|
|
|
return $query->result(); // Return the result as an array of objects
|
2024-07-16 12:29:59 +00:00
|
|
|
}
|
2024-07-22 09:49:37 +00:00
|
|
|
|
2024-07-16 12:29:59 +00:00
|
|
|
public function deleteForm($id){
|
|
|
|
return $this->db->delete('forms', ['id' => $id]);
|
|
|
|
}
|
2024-07-22 09:49:37 +00:00
|
|
|
public function getFormById($form_id)
|
2024-07-19 10:46:18 +00:00
|
|
|
{
|
|
|
|
$query = $this->db->get_where('forms', ['id' => $form_id]);
|
|
|
|
return $query->row_array();
|
|
|
|
}
|
2024-07-22 09:49:37 +00:00
|
|
|
public function getforms_draft($user_id) {
|
2024-07-19 12:30:57 +00:00
|
|
|
$this->db->where('is_published', 0); // Filter by unpublished forms
|
|
|
|
$this->db->where('user_id', $user_id); // Filter by user_id
|
2024-07-22 09:49:37 +00:00
|
|
|
$this->db->order_by('created_at', 'DESC'); // Sort by creation date, newest first
|
2024-07-19 12:30:57 +00:00
|
|
|
$query = $this->db->get('forms');
|
|
|
|
return $query->result();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-07-16 12:29:59 +00:00
|
|
|
}
|