set_header

 
          set_header(string $header)  
This is one of the appearance customization methods supported in Smart Report Engine. It allows you to add a custom header for your report.
# This method is available in both the community edition and the commercial edition .

# Parameters

Parameter Description
$headerThe custom header that you want to use for your report.

# Returns

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

# Code Example

 
           try{
$report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("items"))
       ->set_header("the report custom header goes here")
       ->select_all_fields();
$engine = new CustomEngine($report);
$report_path = $engine->create_report();
echo "Your report URL:" . $report_path;
} catch (Exception $ex) {
   echo 'Caught exception message:  '.  $ex->getMessage();
}