ok

Mini Shell

Direktori : /home2/selectio/www/mm-tailor-billing/app/controllers/
Upload File :
Current File : //home2/selectio/www/mm-tailor-billing/app/controllers/Suppliers.php

<?php
defined('BASEPATH') or exit('No direct script access allowed');

class Suppliers extends MY_Controller
{
    public function __construct()
    {
        parent::__construct();

        if (!$this->loggedIn) {
            redirect('login');
        }
        if (!$this->Admin) {
            $this->session->set_flashdata('error', lang('access_denied'));
            redirect('pos');
        }

        $this->load->library('form_validation');
        $this->load->model('suppliers_model');
    }

    public function add()
    {
        $this->form_validation->set_rules('name', $this->lang->line('name'), 'required');
        $this->form_validation->set_rules('email', $this->lang->line('email_address'), 'valid_email');

        if ($this->form_validation->run() == true) {
            $data = ['name' => $this->input->post('name'),
                'email'     => $this->input->post('email'),
                'phone'     => $this->input->post('phone'),
                'cf1'       => $this->input->post('cf1'),
                'cf2'       => $this->input->post('cf2'),
                'bank_details'       => $this->input->post('bank_details'),
            ];
        }

        if ($this->form_validation->run() == true && $cid = $this->suppliers_model->addSupplier($data)) {
            if ($this->input->is_ajax_request()) {
                echo json_encode(['status' => 'success', 'msg' => $this->lang->line('supplier_added'), 'id' => $cid, 'val' => $data['name']]);
                die();
            }
            $this->session->set_flashdata('message', $this->lang->line('supplier_added'));
            redirect('suppliers');
        } else {
            if ($this->input->is_ajax_request()) {
                echo json_encode(['status' => 'failed', 'msg' => validation_errors()]);
                die();
            }

            $this->data['error']      = (validation_errors()) ? validation_errors() : $this->session->flashdata('error');
            $this->data['page_title'] = lang('add_supplier');
            $bc                       = [['link' => site_url('suppliers'), 'page' => lang('suppliers')], ['link' => '#', 'page' => lang('add_supplier')]];
            $meta                     = ['page_title' => lang('add_supplier'), 'bc' => $bc];
            $this->page_construct('suppliers/add', $this->data, $meta);
        }
    }

    public function delete($id = null)
    {
        if (DEMO) {
            $this->session->set_flashdata('error', $this->lang->line('disabled_in_demo'));
            redirect('pos');
        }

        if ($this->input->get('id')) {
            $id = $this->input->get('id', true);
        }

        if (!$this->Admin) {
            $this->session->set_flashdata('error', lang('access_denied'));
            redirect('pos');
        }

        if ($this->suppliers_model->deleteSupplier($id)) {
            $this->session->set_flashdata('message', lang('supplier_deleted'));
            redirect('suppliers');
        }
    }

    public function edit($id = null)
    {
        if (!$this->Admin) {
            $this->session->set_flashdata('error', $this->lang->line('access_denied'));
            redirect('pos');
        }
        if ($this->input->get('id')) {
            $id = $this->input->get('id', true);
        }

        $this->form_validation->set_rules('name', $this->lang->line('name'), 'required');
        $this->form_validation->set_rules('email', $this->lang->line('email_address'), 'valid_email');

        if ($this->form_validation->run() == true) {
            $data = ['name' => $this->input->post('name'),
                'email'     => $this->input->post('email'),
                'phone'     => $this->input->post('phone'),
                'cf1'       => $this->input->post('cf1'),
                'cf2'       => $this->input->post('cf2'),
                'bank_details'       => $this->input->post('bank_details'),
            ];
        }

        if ($this->form_validation->run() == true && $this->suppliers_model->updateSupplier($id, $data)) {
            $this->session->set_flashdata('message', $this->lang->line('supplier_updated'));
            redirect('suppliers');
        } else {
            $this->data['supplier']   = $this->suppliers_model->getSupplierByID($id);
            $this->data['error']      = (validation_errors()) ? validation_errors() : $this->session->flashdata('error');
            $this->data['page_title'] = lang('edit_supplier');
            $bc                       = [['link' => site_url('suppliers'), 'page' => lang('suppliers')], ['link' => '#', 'page' => lang('edit_supplier')]];
            $meta                     = ['page_title' => lang('edit_supplier'), 'bc' => $bc];
            $this->page_construct('suppliers/edit', $this->data, $meta);
        }
    }

    public function get_suppliers()
    {
        $this->load->library('datatables');
        $this->datatables
        ->select('id, name, phone, email, cf1, cf2, bank_details')
        ->from('suppliers')
        ->add_column('Actions', "<div class='text-center'><div class='btn-group'><a href='" . site_url('suppliers/edit/$1') . "' class='tip btn btn-warning btn-xs' title='" . $this->lang->line('edit_supplier') . "'><i class='fa fa-edit'></i></a> <a href='" . site_url('suppliers/delete/$1') . "' onClick=\"return confirm('" . $this->lang->line('alert_x_supplier') . "')\" class='tip btn btn-danger btn-xs' title='" . $this->lang->line('delete_supplier') . "'><i class='fa fa-trash-o'></i></a></div></div>", 'id')
        ->unset_column('id');

        echo $this->datatables->generate();
    }

    public function index()
    {
        $this->data['error']      = (validation_errors()) ? validation_errors() : $this->session->flashdata('error');
        $this->data['page_title'] = lang('suppliers');
        $bc                       = [['link' => '#', 'page' => lang('suppliers')]];
        $meta                     = ['page_title' => lang('suppliers'), 'bc' => $bc];
        $this->page_construct('suppliers/index', $this->data, $meta);
    }
}

Zerion Mini Shell 1.0