2012-06-26 11:55:27 -07:00

11 lines
213 B
PHP

<?php
class Crunchbutton_Notification extends Cana_Table {
public function __construct($id = null) {
parent::__construct();
$this
->table('notification')
->idVar('id_notification')
->load($id);
}
}