Drupal 7
Iam trying to generate Pdf via mpdf so how to perform this event and how to add the dependency ..
The code which iam using
require_once __DIR__ . '/vendor/autoload.php'; //what should be added
$html = '
<h1><a name="top"></a>mPDF</h1>
<h2>Basic HTML Example</h2>
This file demonstrates most of the HTML elements.
<h5>Heading 5</h5>
<h6>Heading 6</h6>
';
$mpdf=new Mpdf;
$mpdf->WriteHTML($html);
$mpdf->Output();