ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ShortFilePayload.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
29 {
30  public $mime_type;
31  public $disposition;
32  public $user_id;
33  public function __construct(
34  private string $uri,
35  private string $file_name
36  ) {
37  // try to shorten uri
38  $base = BaseDirObjective::get();
39  if ($base !== null) {
40  $uri = str_replace($base, '', $uri);
41  }
42 
44  'p' => $uri,
45  'n' => $file_name
46  ]);
47  }
48 
49  public static function fromArray(array $raw_payload): self
50  {
51  return new self(
52  $raw_payload['p'],
53  $raw_payload['n']
54  );
55  }
56 
57  public function getUri(): string
58  {
59  $uri = $this->uri;
60  // try to expand uri
61  $base = BaseDirObjective::get();
62  if ($base !== null) {
63  return $base . $uri;
64  }
65 
66  return $uri;
67  }
68 
69  public function getMimeType(): string
70  {
71  return $this->mime_type;
72  }
73 
74  public function getFileName(): string
75  {
76  return $this->file_name;
77  }
78 
79  public function getDisposition(): string
80  {
81  return $this->disposition;
82  }
83 
84  public function getUserId(): int
85  {
86  return $this->user_id;
87  }
88 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)
__construct(private string $uri, private string $file_name)