You are here

function phpwkhtmltopdf_enable in PHP WK HTML to PDF 7.2

Implements hook_enable();

File

./phpwkhtmltopdf.install, line 105

Code

function phpwkhtmltopdf_enable() {

  // Send message to user reminding them that WkHtmlToPdf is required on the OS.
  drupal_set_message(t("phpwkhtmltopdf assumes you have already installed the OS specific packages located at: @url", array(
    '@url' => 'http://wkhtmltopdf.org/downloads.html',
  )));
  drupal_set_message(t("Now run 'drush make --no-core -y @path/phpwkhtmltopdf.make' to install all dependencies.", array(
    '@path' => drupal_get_path('module', 'phpwkhtmltopdf'),
  )));
}