You are here

public static function PrintEngineBase::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 PrintEngineInterface::getInstallationInstructions

3 methods override PrintEngineBase::getInstallationInstructions()
DomPdf::getInstallationInstructions in src/Plugin/EntityPrint/PrintEngine/DomPdf.php
Gets the installation instructions for this Print engine.
PhpWkhtmlToPdf::getInstallationInstructions in src/Plugin/EntityPrint/PrintEngine/PhpWkhtmlToPdf.php
Gets the installation instructions for this Print engine.
TcPdfv1::getInstallationInstructions in src/Plugin/EntityPrint/PrintEngine/TcPdfv1.php
Gets the installation instructions for this Print engine.

File

src/Plugin/PrintEngineBase.php, line 57

Class

PrintEngineBase
The PrintEngineBase class.

Namespace

Drupal\entity_print\Plugin

Code

public static function getInstallationInstructions() {
  return 'Please install using composer';
}