public function PdfGeneratorBase::getStdout in PDF generator API 8
Same name and namespace in other branches
- 2.x src/Plugin/PdfGeneratorBase.php \Drupal\pdf_api\Plugin\PdfGeneratorBase::getStdout()
Get stdout from the command that was run.
Return value
string Content of stdout.
Overrides PdfGeneratorInterface::getStdout
1 call to PdfGeneratorBase::getStdout()
- PdfGeneratorBase::displayErrors in src/
Plugin/ PdfGeneratorBase.php - Display error messages.
1 method overrides PdfGeneratorBase::getStdout()
- WkhtmltopdfGenerator::getStdout in src/
Plugin/ PdfGenerator/ WkhtmltopdfGenerator.php - Get stdout output from the generator.
File
- src/
Plugin/ PdfGeneratorBase.php, line 227 - Contains \Drupal\printable\Plugin\PrintableFormatBase.
Class
- PdfGeneratorBase
- Provides a base class for PDF generator plugins.
Namespace
Drupal\pdf_api\PluginCode
public function getStdout() {
return '';
}