diff options
| author | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2024-06-18 13:18:06 +0000 |
|---|---|---|
| committer | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2024-06-18 13:18:06 +0000 |
| commit | 33fd1358507b4a5abb3dcebe78d407d0567717c1 (patch) | |
| tree | 6bd8f6959da4c3fc1b8907c0bbc28eb9e10d4a5a /lib/plugins/core/AdminCourseContents.php | |
| parent | 42d46671c0309bddb71a91bbfdc5f2fa2e44384e (diff) | |
Deprecate `StudipAutoloader` and use composer's `autoload`
Closes #4282
Merge request studip/studip!3099
Diffstat (limited to 'lib/plugins/core/AdminCourseContents.php')
| -rw-r--r-- | lib/plugins/core/AdminCourseContents.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/plugins/core/AdminCourseContents.php b/lib/plugins/core/AdminCourseContents.php new file mode 100644 index 0000000..0e07b58 --- /dev/null +++ b/lib/plugins/core/AdminCourseContents.php @@ -0,0 +1,25 @@ +<?php + +/** + * Interface AdminCourseContents + * With this interface a plugin is able to add columns to the course-overview table for admins and roots. + */ +interface AdminCourseContents +{ + /** + * The available columns for the course-overview table for admins. Index is the identifier of the column + * for the method adminAreaGetCourseContent. The value is the display name of the column. + * @return array : an associative array like array('index' => _("Translated display name")) + */ + public function adminAvailableContents(); + + /** + * Returns the value of the additional column for the course-overview table in the admin-area. + * + * @param Course $course : A Course-object of the given ... course + * @param string $index : the index that comes from adminAvailableContents to identify the column. + * + * @return Flexi\Template | String : Either one will do, but string is preferred, because it can exported as CSV-file more easily. + */ + public function adminAreaGetCourseContent($course, $index); +} |
