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