| Current Path : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/seller/ |
| Current File : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/seller/Customer.php |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Customer extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->helper(['url', 'language', 'timezone_helper']);
$this->load->model(['Customer_model', 'address_model']);
}
public function index()
{
if ($this->ion_auth->logged_in() && $this->ion_auth->is_seller() && ($this->ion_auth->seller_status() == 1 || $this->ion_auth->seller_status() == 0)) {
$seller_id = $this->ion_auth->get_user_id();
if(get_seller_permission($seller_id, 'customer_privacy')){
$this->data['main_page'] = TABLES . 'manage-customer';
$settings = get_settings('system_settings', true);
$this->data['title'] = 'View Customer | ' . $settings['app_name'];
$this->data['meta_description'] = ' View Customer | ' . $settings['app_name'];
$this->data['about_us'] = get_settings('about_us');
$this->load->view('seller/template', $this->data);
}else{
redirect('seller/login', 'refresh');
}
} else {
redirect('seller/login', 'refresh');
}
}
public function view_customer()
{
if ($this->ion_auth->logged_in() && $this->ion_auth->is_seller() && ($this->ion_auth->seller_status() == 1 || $this->ion_auth->seller_status() == 0)) {
return $this->Customer_model->get_customer_list();
} else {
redirect('seller/login', 'refresh');
}
}
}