Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 489 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 489 Bytes

yii2-ireport

Components for run jasperReports

This is rewrite from yii-ireport

yii2-ireport use tcpdf to create pdf

How to install

Update your composer.json with

{
  "require": {
    "andjelko/yii2-ireport": "*"
  }
}

Using

use andjelko\ireport\IReport;

$path = dirname(FILE) . 'file.jrxml'; // path to jrxml
$IReport = new IReport($path);
$IReport->parameters = array('parameters'=>$parameters);
$IReport->execute('I','file_name');