select_all_fields

 
          select_all_fields()  
This method should be used if you want to show all columns ( of the selected tables ) in your report. Therefore, you should either call this method or the “select_fields” method (which shows only selected columns). But, If both methods are called for generating the same report, the latter method will override the former.
# This method is available in both the community edition and the commercial edition .

# Returns

This method returns the calling object, so it can be chained with other methods in the ‘ReportOptions’ class

# Code Example

 
           $report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("items"))
               ->select_all_fields();
$engine = new CustomEngine($report);
$report_path = $engine->create_report();