admin panel edit

This commit is contained in:
2020-01-09 11:23:07 +07:00
parent cec9b2ac4e
commit b70aaa0a68
12 changed files with 372 additions and 527 deletions

View File

@ -0,0 +1,15 @@
<?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);
}
}