CodeIgniter_Gforms/application/models/Form_model.php

183 lines
5.6 KiB
PHP
Raw Normal View History

2024-07-12 09:55:29 +00:00
<?php
2024-07-12 09:53:54 +00:00
class Form_model extends CI_Model {
2024-07-14 21:04:04 +00:00
public function __construct() {
parent::__construct();
}
2024-07-12 09:53:54 +00:00
2024-07-14 21:04:04 +00:00
public function save_form_data($formData) {
2024-07-12 09:55:29 +00:00
2024-07-14 21:04:04 +00:00
$user_id = $this->session->userdata('user_id');
2024-07-12 09:55:29 +00:00
2024-07-12 09:53:54 +00:00
// Save the form data to the database
2024-07-14 21:04:04 +00:00
$this->db->insert('forms', [
2024-07-12 09:53:54 +00:00
'title' => $formData['title'],
2024-07-12 09:55:29 +00:00
'description' => $formData['description'],
'user_id' => $user_id
2024-07-14 21:04:04 +00:00
]);
2024-07-12 09:53:54 +00:00
2024-07-14 21:04:04 +00:00
$formId = $this->db->insert_id();
2024-07-12 09:53:54 +00:00
2024-07-14 21:04:04 +00:00
foreach ($formData['questions'] as $question) {
2024-07-12 09:53:54 +00:00
$this->db->insert('questions', [
'form_id' => $formId,
'question_text' => $question['question'],
'question_type' => $question['type']
]);
$questionId = $this->db->insert_id();
if ($question['type'] !== 'paragraph') {
foreach ($question['options'] as $option) {
$this->db->insert('options', [
'question_id' => $questionId,
'option_text' => $option
]);
}
}
2024-07-14 21:04:04 +00:00
}
2024-07-12 09:53:54 +00:00
}
2024-07-14 21:04:04 +00:00
public function get_all_forms() {
$query = $this->db->get('forms');
return $query->result();
}
public function get_form_by_id($form_id) {
$query = $this->db->get_where('forms', array('form_id' => $form_id));
return $query->row();
}
public function get_questions_by_form_id($form_id) {
$query = $this->db->get_where('questions', array('form_id' => $form_id));
return $query->result();
}
public function get_options_by_question_id($question_id) {
$query = $this->db->get_where('options', array('question_id' => $question_id));
return $query->result();
}
public function delete_form($form_id) {
// Begin transaction
$this->db->trans_start();
// Delete options related to the form using a join
$this->db->query("DELETE o FROM options o
JOIN questions q ON o.question_id = q.question_id
WHERE q.form_id = ?", array($form_id));
// Delete questions related to the form
$this->db->where('form_id', $form_id);
$this->db->delete('questions');
// Delete the form itself
$this->db->where('form_id', $form_id);
$this->db->delete('forms');
// Complete transaction
$this->db->trans_complete();
// Check transaction status
return $this->db->trans_status();
}
public function update_form($form_id, $data) {
$this->db->where('form_id', $form_id);
$this->db->update('forms', $data);
}
// Update question details
public function update_question($question_id, $data) {
$this->db->where('question_id', $question_id);
$this->db->update('questions', $data);
}
// Add new question
public function add_question($data) {
$this->db->insert('questions', $data);
return $this->db->insert_id();
}
// Update option details
public function update_option($option_id, $data) {
$this->db->where('option_id', $option_id);
$this->db->update('options', $data);
}
// Add new option
public function add_option($data) {
$this->db->insert('options', $data);
return $this->db->insert_id();
}
2024-07-16 03:00:23 +00:00
public function save_responses($form_id, $responses) {
$this->db->trans_start();
// Insert response record
$response_data = [
'form_id' => $form_id,
'user_id' => $this->session->userdata('user_id'), // Set user_id if applicable
'created_at' => date('Y-m-d H:i:s'),
];
$this->db->insert('responses', $response_data);
$response_id = $this->db->insert_id();
// Insert each answer
foreach ($responses as $question_id => $answer) {
if (is_array($answer)) {
foreach ($answer as $answer_text) {
$answer_data = [
'response_id' => $response_id,
'question_id' => $question_id,
'answer_text' => $answer_text,
'created_at' => date('Y-m-d H:i:s'),
];
$this->db->insert('response_answers', $answer_data);
}
} else {
$answer_data = [
'response_id' => $response_id,
'question_id' => $question_id,
'answer_text' => $answer,
'created_at' => date('Y-m-d H:i:s'),
];
$this->db->insert('response_answers', $answer_data);
}
}
$this->db->trans_complete();
return $this->db->trans_status();
}
public function get_forms_by_user($user_id) {
$this->db->where('user_id', $user_id);
$query = $this->db->get('forms');
return $query->result();
}
public function get_responses_by_form($form_id) {
$this->db->where('form_id', $form_id);
$query = $this->db->get('responses');
return $query->result();
}
public function get_response($response_id) {
$this->db->where('response_id', $response_id);
$query = $this->db->get('responses');
$response = $query->row();
$this->db->where('response_id', $response_id);
$query = $this->db->get('response_answers');
$response->answers = $query->result();
return $response;
}
public function get_form($form_id) {
$this->db->where('form_id', $form_id);
$query = $this->db->get('forms');
return $query->row();
}
2024-07-12 09:53:54 +00:00
}