i am working on moodle 2.8 and essential theme now i want to set my home page to show the forum topics . from frontpage.php in render folder i can see that they used get_setting funtion to render items but i cant find where and how to use this function to show the forum page in home page by the way i duplicated the code which renders the home page but i guess that my argomans are not true so this get setting is not working and now showing any thing ty in advance `
if ($showfrontcontent) { ?>
<div class="frontpagecontent">
<?php
echo $OUTPUT->get_setting('frontcontentarea', 'format_html');
echo $OUTPUT->get_setting('mod_forum', 'format_html');
echo $OUTPUT->essential_edit_button('theme_essential_frontpage');
?>
</div>`