You are here

print_pdf_mpdf.drush.inc in Printer, email and PDF versions 7.2

Provides drush integration for print_pdf_mpdf module PDF libraries download.

File

print_pdf/lib_handlers/print_pdf_mpdf/print_pdf_mpdf.drush.inc
View source
<?php

/**
 * @file
 * Provides drush integration for print_pdf_mpdf module PDF libraries download.
 */

/**
 * The PDF project download URL.
 */

// URI to the the latest mpdf version.
define('MPDF_DOWNLOAD_URI', 'https://api.github.com/repos/mpdf/mpdf/releases/latest');

/**
 * Implements hook_drush_command().
 */
function print_pdf_mpdf_drush_pdf_libs_alter(&$pdf_libs) {
  $pdf_libs['mpdf'] = array(
    'callback' => '_print_pdf_mpdf_drush_download_url',
  );
}

/**
 * Discover the correct URL of the package to download.
 *
 * @return string
 *   URL of the file to download, FALSE if not known
 */
function _print_pdf_mpdf_drush_download_url() {
  return MPDF_DOWNLOAD_URI;
}

Functions

Namesort descending Description
print_pdf_mpdf_drush_pdf_libs_alter Implements hook_drush_command().
_print_pdf_mpdf_drush_download_url Discover the correct URL of the package to download.

Constants

Namesort descending Description
MPDF_DOWNLOAD_URI