From b1fff93ff524d270aae097b1c0861d157c5a516d Mon Sep 17 00:00:00 2001 From: Florian Dagner Date: Wed, 30 Oct 2024 16:20:02 +0100 Subject: [PATCH] Fix: Remove unintended modulename_help entry --- index.php | 2 +- lang/en/kanban.php | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/index.php b/index.php index 93cd008c..b857cecc 100644 --- a/index.php +++ b/index.php @@ -61,7 +61,7 @@ foreach ($kanbans as $kanban) { $context = context_module::instance($kanban->coursemodule, IGNORE_MISSING); - if (!$context || !$kanban->visible || !has_capability('mod/kanban:view', $context)) { + if (!$context || !has_capability('mod/kanban:view', $context)) { continue; } diff --git a/lang/en/kanban.php b/lang/en/kanban.php index 0d9136d7..99e393c9 100644 --- a/lang/en/kanban.php +++ b/lang/en/kanban.php @@ -123,14 +123,6 @@ $string['messageprovider:due'] = 'Card due'; $string['messageprovider:moved'] = 'Card moved'; $string['modulename'] = 'Kanban board'; -$string['modulename_help'] = 'This activity supports using kanban method for managing projects or learning processes. -Kanban is an agile project management method that organizes tasks through a visual board to optimize workflow. Tasks are categorized into columns such as "To Do," "In Progress," and "Done" to make progress transparent. The goal is to identify bottlenecks in the workflow and continuously improve efficiency. - Depending on the settings, there can be several types of boards within a Kanban activity: -* The course board, which is accessible to everyone who has access to the activity -* Personal boards for each user -* Group boards -* Template boards: Anyone who has the ability to manage boards can copy an existing board as a template. -'; $string['modulenameplural'] = 'Kanban boards'; $string['moveaftercard'] = 'Move after'; $string['movecard'] = 'Move card';