diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-07 10:13:09 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-07 10:13:09 +0200 |
| commit | b1bc66f361a4dda92aba22fdd42843f619797a6c (patch) | |
| tree | ecf6a08bddd1230edf7b49fc756073b4071ba169 /lib/modules/FeedbackModule.php | |
| parent | ca3ade956dd9c9041c07cef048136fa91f5faca2 (diff) | |
implement performance optimizations for my courses, fixes #4693
Closes #4693
Merge request studip/studip!3724
Diffstat (limited to 'lib/modules/FeedbackModule.php')
| -rw-r--r-- | lib/modules/FeedbackModule.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/modules/FeedbackModule.php b/lib/modules/FeedbackModule.php index 34a1ff1..f59ed4b 100644 --- a/lib/modules/FeedbackModule.php +++ b/lib/modules/FeedbackModule.php @@ -11,8 +11,10 @@ * @author Nils Gehrke <nils.gehrke@uni-goettingen.de> * @license https://www.gnu.org/licenses/gpl-2.0.html GPL version 2 */ -class FeedbackModule extends CorePlugin implements StudipModule, SystemPlugin +class FeedbackModule extends CorePlugin implements StudipModuleExtended, SystemPlugin { + use IconNavigationTrait; + /** * {@inheritdoc} */ @@ -21,12 +23,9 @@ class FeedbackModule extends CorePlugin implements StudipModule, SystemPlugin return null; } - /** - * {@inheritdoc} - */ - public function getIconNavigation($course_id, $last_visit, $user_id) + public function getManyIconNavigation(array $course_ids, ?string $user_id = null): array { - return null; + return []; } /** |
