public static function PdfEngineBase::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 PdfEngineInterface::getInstallationInstructions
2 methods override PdfEngineBase::getInstallationInstructions()
- DomPdf::getInstallationInstructions in src/
Plugin/ EntityPrint/ PdfEngine/ DomPdf.php - Gets the installation instructions for this PDF engine.
- PhpWkhtmlToPdf::getInstallationInstructions in src/
Plugin/ EntityPrint/ PdfEngine/ PhpWkhtmlToPdf.php - Gets the installation instructions for this PDF engine.
File
- src/
Plugin/ PdfEngineBase.php, line 31
Class
- PdfEngineBase
- The PdfEngineBase class.
Namespace
Drupal\entity_print\PluginCode
public static function getInstallationInstructions() {
return 'Please install using composer';
}