ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilWebDAVMountInstructionsDocument.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
23 public function __construct(
24 private int $id = 0,
25 private string $title = "",
26 private string $uploaded_instructions = "",
27 private string $processed_instructions = "",
28 private string $language = "",
29 private string $creation_ts = '',
30 private string $modification_ts = '',
31 private int $owner_usr_id = 0,
32 private int $last_modified_usr_id = 0,
33 private int $sorting = 0
34 ) {
35 }
36
37 public function getId(): int
38 {
39 return $this->id;
40 }
41
42 public function getTitle(): string
43 {
44 return $this->title;
45 }
46
47 public function getUploadedInstructions(): string
48 {
49 return $this->uploaded_instructions;
50 }
51
52 public function getProcessedInstructions(): string
53 {
54 return $this->processed_instructions;
55 }
56
57 public function getLanguage(): string
58 {
59 return $this->language;
60 }
61
62 public function getCreationTs(): string
63 {
64 return $this->creation_ts;
65 }
66
67 public function getModificationTs(): string
68 {
69 return $this->modification_ts;
70 }
71
72 public function getOwnerUsrId(): int
73 {
74 return $this->owner_usr_id;
75 }
76
77 public function getLastModificationUsrId(): int
78 {
79 return $this->last_modified_usr_id;
80 }
81
82 public function getSorting(): int
83 {
84 return $this->sorting;
85 }
86}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(private int $id=0, private string $title="", private string $uploaded_instructions="", private string $processed_instructions="", private string $language="", private string $creation_ts='', private string $modification_ts='', private int $owner_usr_id=0, private int $last_modified_usr_id=0, private int $sorting=0)