You are here

pdf_api.module in PDF generator API 2.x

Same filename and directory in other branches
  1. 8 pdf_api.module

Provides an API for generating PDFs.

File

pdf_api.module
View source
<?php

/**
 * @file
 * Provides an API for generating PDFs.
 */

// Register autoloading of vendor libraries.
$autoload = __DIR__ . '/vendor/autoload.php';
if (file_exists($autoload)) {
  require_once $autoload;
}