Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class Pdf {
- function pdf()
- {
- $CI = & get_instance();
- log_message('Debug', 'mPDF class is loaded.');
- }
- function load($param=NULL)
- {
- include_once APPPATH.'/third_party/mpdf/mpdf.php';
- if ($params == NULL)
- {
- $param = '"en-GB-x","A4","","",10,10,10,10,6,3';
- }
- return new mPDF($param);
- }
- }
- /* Location: ./application/libraries/Pdf.php */
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement