ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
class.AbstractPrintViewProvider.php
Go to the documentation of this file.
1<?php
2
19namespace ILIAS\Export;
20
22
27{
28 public const PRINT = "print";
29 public const OFFLINE = "offline";
30
31 protected bool $offline = false;
32
33 public function setOffline(bool $offline): void
34 {
35 $this->offline = $offline;
36 }
37
42 protected function getOutputMode(): string
43 {
44 return $this->offline
47 }
48
49 public function getOnSubmitCode(): string
50 {
51 return "";
52 }
53
54 public function autoPageBreak(): bool
55 {
56 return true;
57 }
58
63 {
64 return null;
65 }
66
70 public function getPages(): array
71 {
72 return [];
73 }
74
78 public function getTemplateInjectors(): array
79 {
80 return [];
81 }
82}
This class represents a property form user interface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...