1 | <?php |
||
13 | class PostCategory extends ActiveRecordModel |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var string $tableName name of the database table. |
||
18 | */ |
||
19 | protected $tableName = "PostCategory"; |
||
20 | |||
21 | /** |
||
22 | * Columns in the table. |
||
23 | * |
||
24 | * @var integer $id primary key auto incremented. |
||
25 | */ |
||
26 | public $id; |
||
27 | public $category; |
||
28 | |||
29 | |||
30 | public function getId($category) |
||
35 | |||
36 | |||
37 | public function getCatName($id) |
||
42 | } |
||
43 |