ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PagesToExtract.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
21 
23 
29 {
30  public const FOREVER_ID = 'cbcb933538e2dfe9460d7a225f7b543b556ee580f41bd4f06cf16a4ca8dd8c8c';
34  private const QUALITY = 75;
35  protected bool $use_max_quality = false;
36 
37  public function __construct(protected bool $persist, protected int $max_size = 500, protected int $max_pages = 5, protected bool $fill = false, private int $quality = self::QUALITY)
38  {
39  }
40 
41  public function getId(): string
42  {
43  return self::FOREVER_ID;
44  }
45 
46  public function getFlavourMachineId(): string
47  {
48  return ExtractPages::ID;
49  }
50 
51  public function getMaxPages(): int
52  {
53  return $this->max_pages;
54  }
55 
56  public function getMaxSize(): int
57  {
58  return $this->max_size;
59  }
60 
61  public function isFill(): bool
62  {
63  return $this->fill;
64  }
65 
66  public function getQuality(): int
67  {
68  return $this->quality;
69  }
70 
71  public function useMaxQuality(): bool
72  {
74  }
75 
76 
77  public function getInternalName(): string
78  {
79  return 'extracted_pages';
80  }
81 
82  public function getVariantName(): ?string
83  {
84  return $this->max_size . 'x' . $this->max_size . ($this->fill ? '_fill' : '') . '_' . $this->getQuality();
85  }
86 
87  public function persist(): bool
88  {
89  return $this->persist;
90  }
91 }
getInternalName()
This defines the speaky internal name of the definition, as the consumer would like to use it...
persist()
Define whether the generated flavor and the respective streams should be persisted, or whether they should only be generated and used in-memory.
getFlavourMachineId()
Defines the ID of the machine that supports this definition.
getVariantName()
If a definition can be used in several variants (e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected bool $persist, protected int $max_size=500, protected int $max_pages=5, protected bool $fill=false, private int $quality=self::QUALITY)