aboutsummaryrefslogtreecommitdiff
path: root/lib/filesystem/FileType.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2024-05-16 11:05:47 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2024-05-16 11:05:47 +0000
commitefaeea07319c63be2f2c6a8bd076e4de8ac8f11d (patch)
treeb6c4f4f976cee1e156f8f9dd0fec39a9f09e6242 /lib/filesystem/FileType.php
parentbb2278c43c4992c2cc0fc2d468ad98a395e13962 (diff)
relocate flexi, fixes #4101
Closes #4101 Merge request studip/studip!2977
Diffstat (limited to 'lib/filesystem/FileType.php')
-rw-r--r--lib/filesystem/FileType.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/filesystem/FileType.php b/lib/filesystem/FileType.php
index 5a53896..3dcd32f 100644
--- a/lib/filesystem/FileType.php
+++ b/lib/filesystem/FileType.php
@@ -177,10 +177,12 @@ interface FileType
public function convertToStandardFile();
/**
- * Returns the content for that additional column, if it exists. You can return null a string
- * or a Flexi_Template as the content.
+ * Returns the content for that additional column, if it exists. You can
+ * return null, a string or a Flexi\Template as the content.
+ *
* @param string $column_index
- * @return null|string|Flexi_Template
+ *
+ * @return null|string|Flexi\Template
*/
public function getContentForAdditionalColumn($column_index);
@@ -194,14 +196,14 @@ interface FileType
/**
- * Generates a Flexi_Template containing additional information that are
+ * Generates a Flexi\Template containing additional information that are
* displayes in the information dialog of a file.
*
* @param bool $include_downloadable_infos Whether to include information
* like file previews that can be downloaded (true) or to not
* include them (false). Defaults to false.
*
- * @returns Flexi_Template|null Either a Flexi_Template containing
+ * @returns Flexi\Template|null Either a Flexi\Template containing
* additional information or null if no such information shall be
* displayed in the information dialog.
*/