11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
|
|
class Crunchbutton_Report extends Cana_Table {
|
|
public function __construct($id = null) {
|
|
parent::__construct();
|
|
$this
|
|
->table('report')
|
|
->idVar('id_report')
|
|
->load($id);
|
|
}
|
|
} |