-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_models.php
42 lines (40 loc) · 1.47 KB
/
my_models.php
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
33
34
35
36
37
38
39
40
41
42
<?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 membership_model $membership_model
* @property site_model $site_model
* @property data_model $data_model
* @property products_model $products_model
* @property film_model $film_model
* @property film_model1 $film_model1
*
* @property Artwork_model $artwork_model artwork model
* @property Place_model $place_model place model
* @property Artwork_comment_model $artwork_comment_model artwork comment model
* @property Place_comment_model $place_comment_model place comment model
* @property Exhibition_model $exhibition_model exhibition model
* @property Artwork_pick_model $artwork_pick_model pick model
* @property Place_pick_model $place_pick_model pick model
* @property Apply_model $apply_model apply model
* @property User_model $user_model user model
*
* Adds custom libraries
* @property Accountlib $accountlib
* @property Applylib $applylib
* @property Tag $tag
* @property Imageupload $imageupload
*
*/
class my_models
{
}
// End my_models.php