Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/kamariallee.com/public_html/application/controllers/admin/ |
Upload File : |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Home_welcome extends Admin_Controller { function __construct() { parent::__construct(); } //this is to list all home_welcome public function index() { //get main title and description $this->db->select('home_welcome')->from('configuration')->where( 'id_configuration', 1); $this->data['home_welcome'] = $this->db->get()->row(); //load view $this->data['subview'] = 'admin/home_welcome/index'; $this->load->view('admin/templates/header', $this->data); $this->load->view('admin/_layout_main', $this->data); $this->load->view('admin/templates/footer', $this->data); } //to update title and description public function update_content() { //check if there is post request, if not, reject & redirect if (empty($_POST)) { redirect('admin/home_welcome'); } //validation check in action $config = array( array( 'field' => 'description', 'label' => 'Description', 'rules' => 'trim|required' ), ); $this->form_validation->set_rules($config); $this->form_validation->set_error_delimiters('<div class="error">', '</div>'); if($this->form_validation->run() == FALSE) { $this->index(); } else { $data = array( 'home_welcome' => $this->input->post('description', TRUE), ); $this->db->where('id_configuration', 1); $this->db->update('configuration', $data); $this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Home Welcome Description Edit Successful</p>'); redirect('admin/home_welcome'); } } }