You are here

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

Class

TcPdfv1
TCPDF plugin implementation.

Namespace

Drupal\entity_print\Plugin\EntityPrint\PrintEngine

Code

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