google_forms/application/controllers/Form_controller.php

70 lines
2.3 KiB
PHP
Raw Normal View History

2024-07-10 12:37:36 +00:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Form_controller extends CI_Controller {
2024-07-19 10:46:18 +00:00
public function index_forms($form_id = null)
{
$this->load->model('Frontend_model');
// Check if the user is logged in
if (!$this->session->userdata('logged_in')) {
// If not logged in, redirect to login page
redirect('users/login');
}
2024-07-16 12:29:59 +00:00
2024-07-19 10:46:18 +00:00
// Retrieve form title from the forms table using form_id
$form_title = 'Untitled Form'; // Default title
if ($form_id) {
$form = $this->Frontend_model->getFormById($form_id);
if ($form) {
$form_title = $form['title'];
}
}
2024-07-16 12:29:59 +00:00
2024-07-19 10:46:18 +00:00
// Load views and data if user is logged in
$this->load->view('templates/header');
2024-07-16 12:29:59 +00:00
2024-07-19 10:46:18 +00:00
$data = $this->Frontend_model->getforms();
$this->load->view('Tables/list_forms', ['forms' => $data, 'form_title' => $form_title]);
2024-07-16 12:29:59 +00:00
2024-07-19 10:46:18 +00:00
$this->load->view('templates/footer');
}
2024-07-16 12:29:59 +00:00
public function delete($id)
{
2024-07-19 10:46:18 +00:00
if (!$this->session->userdata('logged_in')) {
// If not logged in, redirect to login page
redirect('users/login');
}
2024-07-16 12:29:59 +00:00
$this->load->model('Frontend_model');
$this->Frontend_model->deleteForm($id);
$this->session->set_flashdata('status','Form data deleted successfully');
2024-07-19 10:46:18 +00:00
redirect('default_page');
2024-07-16 12:29:59 +00:00
}
2024-07-19 10:46:18 +00:00
public function __construct() {
parent::__construct();
$this->load->model('Updation_model');
}
// Load the form for editing
public function edit_form($form_id) {
$data['form'] = $this->Updation_model->get_form($form_id);
$data['questions'] = $this->Updation_model->get_questions($form_id);
$data['options'] = $this->Updation_model->get_options();
$this->load->view('edit_form_view', $data);
}
// Save the edited form
public function update_form() {
$form_id = $this->input->post('form_id');
$title = $this->input->post('title');
$description = $this->input->post('description');
$questions = $this->input->post('questions');
$this->Updation_model->update_form($form_id, $title, $description);
$this->Updation_model->update_questions($form_id, $questions);
2024-07-16 12:29:59 +00:00
2024-07-19 10:46:18 +00:00
echo json_encode(['status' => 'success']);
}
2024-07-10 12:37:36 +00:00
}