1 | <?php |
||
6 | class Category extends MY_Controller { |
||
7 | |||
8 | /** |
||
9 | * Constructor |
||
10 | */ |
||
11 | public function __construct() |
||
17 | |||
18 | /** |
||
19 | * Redirect to list |
||
20 | */ |
||
21 | public function index() |
||
25 | |||
26 | /** |
||
27 | * List of categories |
||
28 | */ |
||
29 | public function category_list() |
||
37 | |||
38 | /** |
||
39 | * Add a category |
||
40 | */ |
||
41 | public function add_sub() |
||
49 | |||
50 | /** |
||
51 | * Category edit form |
||
52 | */ |
||
53 | public function edit($cat_id) |
||
61 | |||
62 | /** |
||
63 | * Update the category |
||
64 | */ |
||
65 | public function edit_sub() |
||
80 | |||
81 | /** |
||
82 | * Delete a category |
||
83 | */ |
||
84 | public function del_sub($cat_id) |
||
88 | } |
||
89 | // End of controllers/category.php |