forked from nhanh2301/codeigniter-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmy_models.php
More file actions
32 lines (31 loc) · 844 Bytes
/
my_models.php
File metadata and controls
32 lines (31 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php die();
/**
* Add you custom models here that you are loading in your controllers
*
* <code>
* $this->site_model->get_records()
* </code>
* Where site_model is the model Class
*
* ---------------------- Models to Load ----------------------
* <examples>
*
* @property Category_model $category_model
* @property Comment_model $comment_model
* @property General_model $general_model
* @property Order_model $order_model
* @property Page_model $page_model
* @property Product_model $product_model
* @property User_model $user_model
* @property Filter_category_model $filter_category_model
* @property Filter_model $filter_model
* @property Filter_relation_model $filter_relation_model
* @property Newsletter_model $newsletter_model
* @property Offer_model $offer_model
*
*
*/
class my_models
{
}
// End my_models.php