mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
29 lines
666 B
PHP
29 lines
666 B
PHP
</td>
|
|
</tr>
|
|
</table>
|
|
<?php print_container_end(); ?>
|
|
</td>
|
|
<?php
|
|
print '<!-- End page content -->'."\n";
|
|
|
|
// The right column
|
|
if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT) || $editing) {
|
|
echo '<td style="vertical-align: top; width: '. $preferred_width_right .'px;" id="right-column">';
|
|
echo '<!-- Begin right side blocks -->'."\n";
|
|
print_container_start();
|
|
blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT);
|
|
print_spacer(1, 120, true);
|
|
print_container_end();
|
|
echo '<!-- End right side blocks -->'."\n";
|
|
echo '</td>';
|
|
}
|
|
?>
|
|
|
|
</tr>
|
|
</table>
|
|
|
|
<?php
|
|
|
|
print_footer($course);
|
|
?>
|