You are here

public static function PhpWkhtmlToPdf::getInstallationInstructions in Entity Print 8.2

Gets the installation instructions for this Print engine.

Return value

string A description of how the user can meet the dependencies for this engine.

Overrides PrintEngineBase::getInstallationInstructions

File

src/Plugin/EntityPrint/PrintEngine/PhpWkhtmlToPdf.php, line 114

Class

PhpWkhtmlToPdf
PHP wkhtmltopdf plugin.

Namespace

Drupal\entity_print\Plugin\EntityPrint\PrintEngine

Code

public static function getInstallationInstructions() {
  return t('Please install with: @command', [
    '@command' => 'composer require "mikehaertl/phpwkhtmltopdf ~2.1"',
  ]);
}