You are here

function print_pdf_wkhtmltopdf_pdf_tool_info in Printer, email and PDF versions 7.2

Implements hook_pdf_tool_info().

File

print_pdf/lib_handlers/print_pdf_wkhtmltopdf/print_pdf_wkhtmltopdf.module, line 17
Generate a PDF for the print_pdf module using the wkhtmltopdf library.

Code

function print_pdf_wkhtmltopdf_pdf_tool_info() {
  return array(
    'name' => 'wkhtmltopdf',
    'min_version' => '0.9.6',
    'url' => 'http://wkhtmltopdf.org/downloads.html',
    'expand_css' => FALSE,
  );
}