select_tables
select_tables
select_tables(array $selected_tables)
Parameter | Description |
---|---|
$selected_tables | An array of the table(s) that you want to use as a data source for your report. |
$report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("items"))
->select_all_fields();
$engine = new CustomEngine($report);
$report_path = $engine->create_report();