我是moodle的新手,我正在努力为moodle网站开发一个主题。我必须在首页上显示三个相邻的框。一个框将显示即将发生的事件,另一个将显示最新消息。我注意到最新消息和即将发生的事件的框在内页中正确显示,但我不知道如何在首页上显示这些框。我正在使用moodle 2.3.3。任何帮助,将不胜感激。
问问题
667 次
1 回答
0
您可以使用 Moodle 的 HTML 编辑器将您的代码添加到首页的“摘要”中。
如果您对 php 和 html 感到满意,您应该将您的框从您的 Moodle 主题 (/theme/*your_current_theme*/layout/frontpage.php) 直接添加到 frontpage.php。
编辑你的frontpage.php,它可能看起来像这样:
<!-- start of moodle content -->
<div id="page-content">
<div id="region-main-box">
<div id="region-post-box">
<!-- main mandatory content of the moodle page -->
<div id="region-main-wrap">
<div id="region-main">
<div class="region-content">
<?php echo $OUTPUT->main_content() ?>
HERE IS THE PLACE TO ADD BOXES.
</div>
</div>
</div>
<!-- end of main mandatory content of the moodle page -->
于 2013-03-07T09:01:31.203 回答