ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilBiblData.php
Go to the documentation of this file.
1 <?php
2 
20 
28 {
29  public const TABLE_NAME = 'il_bibl_data';
30 
31 
32  public static function returnDbTableName(): string
33  {
34  return self::TABLE_NAME;
35  }
36 
37 
38  public function getConnectorContainerName(): string
39  {
40  return self::TABLE_NAME;
41  }
42 
43 
53  protected ?int $id = null;
60  protected ?string $filename = null;
67  protected ?int $file_type = null;
68 
76  protected ?string $rid = null;
77 
78  public function getId(): ?int
79  {
80  return $this->id;
81  }
82 
83 
84  public function setId(int $id): void
85  {
86  $this->id = $id;
87  }
88 
89 
90  public function getFilename(): ?string
91  {
92  return $this->filename;
93  }
94 
95 
96  public function setFilename(string $filename): void
97  {
98  $this->filename = $filename;
99  }
100 
101 
102  public function getFileType(): int
103  {
104  return $this->file_type;
105  }
106 
107 
108  public function setFileType(int $file_type): void
109  {
110  $this->file_type = $file_type;
111  }
112 
116  public function getResourceId(): ?string
117  {
118  return $this->rid;
119  }
120 
121  public function setResourceId(string $rid): self
122  {
123  $this->rid = $rid;
124  return $this;
125  }
126 }
setId(int $id)
setFileType(int $file_type)
int $file_type
true integer 1 true
string $rid
true text 255 true
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $filename
true text 256 true
static returnDbTableName()
Class ilBiblData.
int $id
true integer 4 true true true true
setResourceId(string $rid)
setFilename(string $filename)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...