ok
Direktori : /home2/selectio/www/gangabuvana/admin/cms/application/controllers/admin/ |
Current File : //home2/selectio/www/gangabuvana/admin/cms/application/controllers/admin/Page_photo_gallery.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Page_photo_gallery extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('admin/Model_common'); $this->load->model('admin/Model_page_photo_gallery'); } public function index() { $error = ''; $success = ''; $data['setting'] = $this->Model_common->get_setting_data(); $data['page_photo_gallery'] = $this->Model_page_photo_gallery->show(); $this->load->view('admin/view_header',$data); $this->load->view('admin/view_page_photo_gallery',$data); $this->load->view('admin/view_footer'); } public function edit($id) { $tot = $this->Model_page_photo_gallery->page_photo_gallery_check($id); if(!$tot) { redirect(base_url().'admin/page-photo-gallery'); exit; } $data['setting'] = $this->Model_common->get_setting_data(); $error = ''; $success = ''; if(isset($_POST['form1'])) { if(PROJECT_MODE == 0) { $this->session->set_flashdata('error',PROJECT_NOTIFICATION); redirect($_SERVER['HTTP_REFERER']); } $valid = 1; $photo_gallery_heading = $this->input->post('photo_gallery_heading', true); $mt_photo_gallery = $this->input->post('mt_photo_gallery', true); $mk_photo_gallery = $this->input->post('mk_photo_gallery', true); $md_photo_gallery = $this->input->post('md_photo_gallery', true); $this->form_validation->set_rules('photo_gallery_heading', 'Heading', 'trim|required'); if($this->form_validation->run() == FALSE) { $valid = 0; $error .= validation_errors(); } if($valid == 1) { $form_data = array( 'photo_gallery_heading' => $photo_gallery_heading, 'mt_photo_gallery' => $mt_photo_gallery, 'mk_photo_gallery' => $mk_photo_gallery, 'md_photo_gallery' => $md_photo_gallery ); $this->Model_page_photo_gallery->update($id,$form_data); $success = 'Photo Gallery Page information is updated successfully'; $this->session->set_flashdata('success',$success); redirect(base_url().'admin/page-photo-gallery'); } else { $this->session->set_flashdata('error',$error); redirect(base_url().'admin/page-photo-gallery/edit'.$id); } } else { $data['page_photo_gallery'] = $this->Model_page_photo_gallery->get_page_photo_gallery($id); $this->load->view('admin/view_header',$data); $this->load->view('admin/view_page_photo_gallery_edit',$data); $this->load->view('admin/view_footer'); } } }