Add the orientation in each of the views page.

Created on 13 July 2023, over 1 year ago
Updated 2 January 2024, over 1 year ago

Problem/Motivation

Hello.

How is it possible to add the orientation in each of the views page.

In the configuration of the view, in global print add the possibility of choosing the orientation of the page, so that it is not default as it is now.

When it is chosen in the general configuration, the orientation of the page is the same for all.

I would like to add the possibility at least to the views page to choose the orientation for each individual one.

Thank you.

Steps to reproduce

Dompdf

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

2.0

Component

Code

Created by

🇪🇸Spain ady1503

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @ady1503
  • 🇩🇪Germany jurgenhaas Gottmadingen

    I'd be interested in this too. Two additional remarks regarding implementation:

    • This is probably only for the PDF output, since this is the print engine where an orientation can be provided.
    • The selection should allow 3 options: use default, override to portrait, override to landscape.

    The selected value should be used as the fourth argument to the entity_print_views.view route and if it's not default, the \Drupal\entity_print_views\Controller\ViewPrintController::viewPrint method can call a new method in the print engine plugin to change the orientation.

    This isn't probably too difficult to implement and if the maintainers agree with this, I'd be happy to provide an MR.

  • 🇩🇪Germany jurgenhaas Gottmadingen

    Sorry, messed up the version attribute.

  • 🇪🇸Spain ady1503

    Hello.
    jurgenhaas , Can you present an example?
    Of:
    The selected value should be used as the fourth argument to the entity_print_views.view route and if it's not default, the \Drupal\entity_print_views\Controller\ViewPrintController::viewPrint method can call a new method in the print engine plugin to change the orientation.

    Gracias

  • 🇩🇪Germany jurgenhaas Gottmadingen

    It may look like this:

    public function viewPrint($export_type, $view_name, $display_id, $orientation) {
    ...
      $print_engine = $this->pluginManager->createSelectedInstance($export_type);
      if ($orientation !== 'default') {
        $print_engine->setOrientation($orientation);
      }
    ...
    }
    

    Then, the print engine interface \Drupal\entity_print\Plugin\PrintEngineInterface requires a new method setOrientation and the implementation in e.g. \Drupal\entity_print\Plugin\EntityPrint\PrintEngine\DomPdf would look like this:

    public function setOrientation($orientation) {
      $this->dompdf->setPaper($this->dompdf->getPaperSize(), $orientation);
    }
    

    For other print engines, that implementation will have to be adopted so that it calls the correct function in the upstream library.

Production build 0.71.5 2024