0
I am modifying a theme from Moodle, however I can’t find some HTML files or at least understand how they are created via backend, I have the following code:
<?php
echo $OUTPUT->course_content_header();
echo $OUTPUT->main_content();
echo $OUTPUT->course_content_footer();
?>
I need to add an element inside the html that one of these lines of code generates, how do I find out in Moodle how it generates this html and how to add this component where I want it.
I want to add an HTML component inside the block Visão Geral dos Cursos
, just above the text Nenhuma informação disponível sobre o curso
This is in lib/outputrenderers.php More details on https://moodle.org/mod/forum/discuss.php?d=328350#p1320808
– Eduardo Kraus