ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CloneRevision.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
31 class CloneRevision extends BaseRevision implements Revision
32 {
33  protected bool $available = true;
35  protected int $version_number = 0;
37  protected int $owner_id = 0;
38  protected string $title = '';
39 
43  public function __construct(ResourceIdentification $identification, protected FileRevision $revision_to_clone)
44  {
45  parent::__construct($identification);
46  }
47 
48 
49  public function setVersionNumber(int $version_number): void
50  {
51  $this->version_number = $version_number;
52  }
53 
54  public function getVersionNumber(): int
55  {
56  return $this->version_number;
57  }
58 
62  public function getInformation(): Information
63  {
64  return $this->information ?? new FileInformation();
65  }
66 
67  public function setInformation(Information $information): void
68  {
69  $this->information = $information;
70  }
71 
75  public function setUnavailable(): void
76  {
77  $this->available = false;
78  }
79 
83  public function isAvailable(): bool
84  {
85  return $this->available;
86  }
87 
88  public function getOwnerId(): int
89  {
90  return $this->owner_id;
91  }
92 
93  public function setOwnerId(int $owner_id): self
94  {
95  $this->owner_id = $owner_id;
96  return $this;
97  }
98 
102  public function setTitle(string $title): Revision
103  {
104  $this->title = $title;
105  return $this;
106  }
107 
108  public function getTitle(): string
109  {
110  return $this->title;
111  }
112 
113  public function getRevisionToClone(): FileRevision
114  {
115  return $this->revision_to_clone;
116  }
117 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
__construct(ResourceIdentification $identification, protected FileRevision $revision_to_clone)
Revision constructor.