2012-07-17 02:38:07 -04:00

11 lines
225 B
PHP

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