You are here

public static function DomPdf::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/DomPdf.php, line 103

Class

DomPdf
A Entity Print plugin for the DomPdf library.

Namespace

Drupal\entity_print\Plugin\EntityPrint\PrintEngine

Code

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