1 | <?php |
||
10 | class Comm extends ActiveRecordModel |
||
11 | { |
||
12 | /** |
||
13 | * @var string $tableName name of the database table. |
||
14 | */ |
||
15 | protected $tableName = "Comm"; |
||
16 | |||
17 | |||
18 | /** |
||
19 | * Columns in the table. |
||
20 | * |
||
21 | * @var integer $id primary key auto incremented. |
||
22 | */ |
||
23 | public $id; |
||
24 | public $userid; |
||
25 | public $email; |
||
26 | public $title; |
||
27 | public $comment; |
||
28 | public $parentid; |
||
29 | public $created; |
||
30 | public $updated; |
||
31 | |||
32 | |||
33 | 1 | public function getGravatar($email, $img = false, $atts = array()) |
|
50 | } |
||
51 |