ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
FileStreamWriteAccess.php
Go to the documentation of this file.
1 <?php
2 
4 
10 
11 /******************************************************************************
12  *
13  * This file is part of ILIAS, a powerful learning management system.
14  *
15  * ILIAS is licensed with the GPL-3.0, you should have received a copy
16  * of said license along with the source code.
17  *
18  * If this is not the case or you just want to try ILIAS, you'll find
19  * us at:
20  * https://www.ilias.de
21  * https://github.com/ILIAS-eLearning
22  *
23  *****************************************************************************/
38 {
55  public function writeStream(string $path, FileStream $stream): void;
56 
57 
74  public function putStream(string $path, FileStream $stream): void;
75 
76 
93  public function updateStream(string $path, FileStream $stream): void;
94 }
writeStream(string $path, FileStream $stream)
Writes the stream to a new file.
$path
Definition: ltiservices.php:32
putStream(string $path, FileStream $stream)
Creates a new file or updates an existing one.
updateStream(string $path, FileStream $stream)
Updates an existing file.
Interface FileStream.
Definition: FileStream.php:33