16 lines
319 B
PHP
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);
|
||
|
}
|
||
|
}
|