ILIAS  release_8 Revision v8.23
class.ilWebDAVMountInstructionsDocument.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 {
23  private int $id;
24  private string $title;
25  private string $uploaded_instructions;
26  private string $processed_instructions;
27  private string $language;
28  private string $creation_ts;
29  private string $modification_ts;
30  private int $owner_usr_id;
31  private int $last_modified_usr_id;
32  private int $sorting;
33 
34  public function __construct(
35  int $a_id = 0,
36  string $a_title = "",
37  string $a_uploaded_instructions = "",
38  string $a_processed_instructions = "",
39  string $a_language = "",
40  string $a_creation_ts = '',
41  string $a_modification_ts = '',
42  int $a_owner_usr_id = 0,
43  int $a_last_modified_usr_id = 0,
44  int $a_sorting = 0
45  ) {
46  $this->id = $a_id;
47  $this->title = $a_title;
48  $this->uploaded_instructions = $a_uploaded_instructions;
49  $this->processed_instructions = $a_processed_instructions;
50  $this->language = $a_language;
51  $this->creation_ts = $a_creation_ts;
52  $this->modification_ts = $a_modification_ts;
53  $this->owner_usr_id = $a_owner_usr_id;
54  $this->last_modified_usr_id = $a_last_modified_usr_id;
55  $this->sorting = $a_sorting;
56  }
57 
58  public function getId(): int
59  {
60  return $this->id;
61  }
62 
63  public function getTitle(): string
64  {
65  return $this->title;
66  }
67 
68  public function getUploadedInstructions(): string
69  {
71  }
72 
73  public function getProcessedInstructions(): string
74  {
76  }
77 
78  public function getLanguage(): string
79  {
80  return $this->language;
81  }
82 
83  public function getCreationTs(): string
84  {
85  return $this->creation_ts;
86  }
87 
88  public function getModificationTs(): string
89  {
91  }
92 
93  public function getOwnerUsrId(): int
94  {
95  return $this->owner_usr_id;
96  }
97 
98  public function getLastModificationUsrId(): int
99  {
101  }
102 
103  public function getSorting(): int
104  {
105  return $this->sorting;
106  }
107 }
__construct(int $a_id=0, string $a_title="", string $a_uploaded_instructions="", string $a_processed_instructions="", string $a_language="", string $a_creation_ts='', string $a_modification_ts='', int $a_owner_usr_id=0, int $a_last_modified_usr_id=0, int $a_sorting=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...