如何在 Moodle 1.9 中修改第 0 节


How to modify section 0 in Moodle 1.9?

我想在第 0 节拥有资源,就像 http://moodlecommons.org 网站一样。我在 ''course''format''topics''format 中找到了第 0 节的代码.php但我不知道在哪里修改该节中显示的活动/资源类型。谢谢。

本节的代码似乎位于下面几行,

echo '<div class="content">';
if (!is_null($thissection->name)) {
    echo $OUTPUT->heading(format_string($thissection->name, true, array('context' => $context)), 3, 'sectionname');
}
//CODE PERSONNALISE POUR CHAQUE DUT
echo '<div class="summary">';
echo '</div>';