ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Settings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function __construct(
26 protected int $id,
27 protected int $default_width,
28 protected int $default_height,
29 protected bool $for_translation
30 ) {
31 }
32
33 public function getId(): int
34 {
35 return $this->id;
36 }
37
38 public function getDefaultWidth(): int
39 {
40 return $this->default_width;
41 }
42
43 public function getDefaultHeight(): int
44 {
45 return $this->default_height;
46 }
47
48 public function getForTranslation(): bool
49 {
50 return $this->for_translation;
51 }
52}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(protected int $id, protected int $default_width, protected int $default_height, protected bool $for_translation)
Definition: Settings.php:25