toko/application/controllers/admin/Product.php
2020-01-09 11:23:07 +07:00

16 lines
319 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Product extends CI_Controller {
public function index()
{
$tpl = config_item('admin_template');
$tpl_path = 'admin/' . $tpl . '/';
$data = array(
'tpl_path' => $tpl_path
);
$this->load->view($tpl_path . 'product',$data);
}
}