class FormatConfigurationFormPdf in Printer and PDF versions for Drupal 8+ 8
Same name and namespace in other branches
- 2.x src/Form/FormatConfigurationFormPdf.php \Drupal\printable\Form\FormatConfigurationFormPdf
Provides shared configuration form for all printable formats.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\printable\Form\FormatConfigurationFormPdf
Expanded class hierarchy of FormatConfigurationFormPdf
1 string reference to 'FormatConfigurationFormPdf'
File
- src/
Form/ FormatConfigurationFormPdf.php, line 15
Namespace
Drupal\printable\FormView source
class FormatConfigurationFormPdf extends FormBase {
/**
* The printable entity manager.
*
* @var \Drupal\printable\PrintableEntityManagerInterface
*/
protected $printableEntityManager;
/**
* The config factory service.
*
* @var \Drupal\Core\Config\ConfigFactory
*/
protected $configFactory;
/**
* Constructs a new form object.
*
* @param \Drupal\printable\PrintableEntityManagerInterface $printable_entity_manager
* The printable entity manager.
* @param \Drupal\Core\Config\ConfigFactory $configFactory
* Defines the configuration object factory.
*/
public function __construct(PrintableEntityManagerInterface $printable_entity_manager, ConfigFactory $configFactory) {
$this->printableEntityManager = $printable_entity_manager;
$this->configFactory = $configFactory;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('printable.entity_manager'), $container
->get('config.factory'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'printable_configuration_pdf';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $printable_format = NULL) {
$wkhtmltopdf_present = ClassLoader::classExists('mikehaertl\\wkhtmlto\\Pdf');
$mpdf_present = ClassLoader::classExists('Mpdf\\Mpdf');
$tcpdf_present = ClassLoader::classExists('TCPDF');
$dompdf_present = ClassLoader::classExists('Dompdf\\Dompdf');
if ($wkhtmltopdf_present || $mpdf_present || $tcpdf_present || $dompdf_present) {
$form['settings']['print_pdf_pdf_tool'] = [
'#type' => 'radios',
'#title' => $this
->t('PDF generation tool'),
'#options' => [],
'#default_value' => $this
->config('printable.settings')
->get('pdf_tool'),
'#description' => $this
->t('This option selects the PDF generation tool being used by this module to create the PDF version.'),
];
}
else {
drupal_set_message($this
->t('You are seeing no PDF generating tool because you have not installed any third party library using composer.'));
}
if ($mpdf_present) {
$form['settings']['print_pdf_pdf_tool']['#options'] += [
'mPDF' => 'mPDF',
];
}
if ($tcpdf_present) {
$form['settings']['print_pdf_pdf_tool']['#options'] += [
'TCPDF' => 'TCPDF',
];
}
if ($wkhtmltopdf_present) {
$form['settings']['print_pdf_pdf_tool']['#options'] += [
'wkhtmltopdf' => 'wkhtmltopdf',
];
}
if ($dompdf_present) {
$form['settings']['print_pdf_pdf_tool']['#options'] += [
'dompdf' => 'dompdf',
];
}
$form['settings']['print_pdf_content_disposition'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Save the pdf'),
'#description' => $this
->t('Save the pdf instead of showing inline'),
'#default_value' => $this
->config('printable.settings')
->get('save_pdf'),
];
$form['settings']['print_pdf_ignore_warnings'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Ignore warnings'),
'#description' => $this
->t('Use the generated PDF even if warnings are indicated'),
'#default_value' => $this
->config('printable.settings')
->get('ignore_warnings'),
];
$form['settings']['print_pdf_paper_size'] = [
'#type' => 'select',
'#title' => $this
->t('Paper size'),
'#options' => [],
'#default_value' => (string) $this
->config('printable.settings')
->get('paper_size'),
'#description' => $this
->t('Choose the paper size of the generated PDF.'),
];
$paper_sizes = [
'A0',
'A1',
'A2',
'A3',
'A4',
'A5',
'A6',
'A7',
'A8',
'A9',
'B0',
'B1',
'B10',
'B2',
'B3',
'B4',
'B5',
'B6',
'B7',
'B8',
'B9',
'C5E',
'Comm10E',
'DLE',
'Executive',
'Folio',
'Ledger',
'Legal',
'Letter',
'Tabloid',
];
foreach ($paper_sizes as $sizes) {
$form['settings']['print_pdf_paper_size']['#options'][$sizes] = $sizes;
}
$form['settings']['print_pdf_page_orientation'] = [
'#type' => 'select',
'#title' => $this
->t('Page orientation'),
'#options' => [
'portrait' => $this
->t('Portrait'),
'landscape' => $this
->t('Landscape'),
],
'#default_value' => $this
->config('printable.settings')
->get('page_orientation'),
'#description' => $this
->t('Choose the page orientation of the generated PDF.'),
];
$form['settings']['print_pdf_filename'] = [
'#type' => 'textfield',
'#title' => $this
->t('PDF filename'),
'#default_value' => $this
->config('printable.settings')
->get('pdf_location'),
'#description' => $this
->t("Filename with its location can be entered. If left empty and Save the pdf option has been selected the generated filename defaults to the node's path.The .pdf extension will be appended automatically."),
];
if ($wkhtmltopdf_present) {
$form['settings']['path_to_binary'] = [
'#type' => 'textfield',
'#title' => $this
->t('Path to binary file'),
'#default_value' => $this
->config('printable.settings')
->get('path_to_binary'),
'#description' => $this
->t("Enter the path to binary file for wkhtmltopdf over here."),
'#states' => [
'visible' => [
'input[name="print_pdf_pdf_tool"]' => [
'value' => 'wkhtmltopdf',
],
],
],
];
$form['settings']['print_pdf_use_xvfb_run'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Use Xvfb-run'),
'#description' => $this
->t('Enable this option if you get an error "QXcbConnection: Could not connect to display Aborted (core dumped)" when seeking to generate PDFs.'),
'#default_value' => $this
->config('printable.settings')
->get('print_pdf_use_xvfb_run'),
'#states' => [
'visible' => [
'input[name="print_pdf_pdf_tool"]' => [
'value' => 'wkhtmltopdf',
],
],
],
];
$form['settings']['path_to_xfb_run'] = [
'#type' => 'textfield',
'#title' => $this
->t('Path to Xvfb-run binary file'),
'#default_value' => $this
->config('printable.settings')
->get('path_to_xfb_run'),
'#description' => $this
->t("Enter the path to binary file for Xvfb-run over here."),
'#states' => [
'visible' => [
'input[name="print_pdf_pdf_tool"]' => [
'value' => 'wkhtmltopdf',
],
'input[name="print_pdf_use_xvfb_run"]' => [
'checked' => TRUE,
],
],
],
];
}
$form['settings']['submit'] = [
'#type' => 'submit',
'#value' => 'Submit',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$pdf_tool = $this
->config('printable.settings')
->get('pdf_tool');
$this->configFactory
->getEditable('printable.settings')
->set('pdf_tool', $form_state
->getValue('print_pdf_pdf_tool'))
->set('save_pdf', $form_state
->getValue('print_pdf_content_disposition'))
->set('ignore_warnings', $form_state
->getValue('print_pdf_ignore_warnings'))
->set('paper_size', (string) $form_state
->getValue('print_pdf_paper_size'))
->set('page_orientation', $form_state
->getValue('print_pdf_page_orientation'))
->set('pdf_location', $form_state
->getValue('print_pdf_filename'))
->save();
if (ClassLoader::classExists('mikehaertl\\wkhtmlto\\Pdf') && $pdf_tool == 'wkhtmltopdf') {
$this->configFactory
->getEditable('printable.settings')
->set('path_to_binary', $form_state
->getValue('path_to_binary'))
->set('print_pdf_use_xvfb_run', $form_state
->getValue('print_pdf_use_xvfb_run'))
->set('path_to_xfb_run', $form_state
->getValue('path_to_xfb_run'))
->save();
}
drupal_set_message('The configuration option has been saved', 'status');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormatConfigurationFormPdf:: |
protected | property |
The config factory service. Overrides FormBase:: |
|
FormatConfigurationFormPdf:: |
protected | property | The printable entity manager. | |
FormatConfigurationFormPdf:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
FormatConfigurationFormPdf:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
FormatConfigurationFormPdf:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
FormatConfigurationFormPdf:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
FormatConfigurationFormPdf:: |
public | function | Constructs a new form object. | |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |