aboutsummaryrefslogtreecommitdiff
path: root/lib/plugins/core/AdminCourseContents.class.php
diff options
context:
space:
mode:
authorPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
committerPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
commit4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch)
tree5c07151ae61276d334e88f6309c30d439a85c12e /lib/plugins/core/AdminCourseContents.class.php
parentda0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff)
parent97a188592c679890a25c37ab78463add76a52ff7 (diff)
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'lib/plugins/core/AdminCourseContents.class.php')
-rw-r--r--lib/plugins/core/AdminCourseContents.class.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/plugins/core/AdminCourseContents.class.php b/lib/plugins/core/AdminCourseContents.class.php
deleted file mode 100644
index 065cc9e..0000000
--- a/lib/plugins/core/AdminCourseContents.class.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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);
-}