ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPageFormats.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public const DEFAULT_MARGIN_BODY_TOP = '0cm';
27  public const DEFAULT_MARGIN_BODY_RIGHT = '2cm';
28  public const DEFAULT_MARGIN_BODY_BOTTOM = '0cm';
29  public const DEFAULT_MARGIN_BODY_LEFT = '2cm';
30 
32 
33  public function __construct(ilLanguage $language)
34  {
35  $this->language = $language;
36  }
37 
42  public function fetchPageFormats(): array
43  {
44  return [
45  'a4' => [
46  'name' => $this->language->txt('certificate_a4'), // (297 mm x 210 mm)
47  'value' => 'a4',
48  'width' => '210mm',
49  'height' => '297mm'
50  ],
51  'a4landscape' => [
52  'name' => $this->language->txt('certificate_a4_landscape'), // (210 mm x 297 mm)',
53  'value' => 'a4landscape',
54  'width' => '297mm',
55  'height' => '210mm'
56  ],
57  'a5' => [
58  'name' => $this->language->txt('certificate_a5'), // (210 mm x 148.5 mm)
59  'value' => 'a5',
60  'width' => '148mm',
61  'height' => '210mm'
62  ],
63  'a5landscape' => [
64  'name' => $this->language->txt('certificate_a5_landscape'), // (148.5 mm x 210 mm)
65  'value' => 'a5landscape',
66  'width' => '210mm',
67  'height' => '148mm'
68  ],
69  'letter' => [
70  'name' => $this->language->txt('certificate_letter'), // (11 inch x 8.5 inch)
71  'value' => 'letter',
72  'width' => '8.5in',
73  'height' => '11in'
74  ],
75  'letterlandscape' => [
76  'name' => $this->language->txt('certificate_letter_landscape'), // (8.5 inch x 11 inch)
77  'value' => 'letterlandscape',
78  'width' => '11in',
79  'height' => '8.5in'
80  ],
81  'custom' => [
82  'name' => $this->language->txt('certificate_custom'),
83  'value' => 'custom',
84  'width' => '',
85  'height' => ''
86  ]
87  ];
88  }
89 }
__construct(ilLanguage $language)
fetchPageFormats()
Retrieves predefined page formats.
const DEFAULT_MARGIN_BODY_BOTTOM