You are here

phpwkhtmltopdf.module in PHP WK HTML to PDF 7

Same filename and directory in other branches
  1. 7.2 phpwkhtmltopdf.module

File

phpwkhtmltopdf.module
View source
<?php

function phpwkhtmltopdf_libraries_info() {
  return array(
    'phpwkhtmltopdf' => array(
      'name' => 'PHPWkHtmlToPdf',
      'vendor url' => 'https://github.com/mikehaertl/phpwkhtmltopdf',
      'download url' => 'https://github.com/mikehaertl/phpwkhtmltopdf/archive/1.2.1.tar.gz',
      'version callback' => 'phpwkhtmltopdf_get_installed_version',
      'files' => array(
        'php' => array(
          'WkHtmlToPdf.php',
        ),
      ),
    ),
  );
}
function phpwkhtmltopdf_get_installed_version($library) {
  return '1.2.1';
}