public static function DomPdf::getInstallationInstructions in Entity Print 8
Gets the installation instructions for this PDF engine.
Return value
string A description of how the user can meet the dependencies for this engine.
Overrides PdfEngineBase::getInstallationInstructions
File
- src/
Plugin/ EntityPrint/ PdfEngine/ DomPdf.php, line 66
Class
- DomPdf
- @PdfEngine( id = "dompdf", label = @Translation("Dompdf") )
Namespace
Drupal\entity_print\Plugin\EntityPrint\PdfEngineCode
public static function getInstallationInstructions() {
return t('Please install with: @command', [
'@command' => 'composer require "dompdf/dompdf 0.7.0-beta3"',
]);
}