Rev 118 | Rev 120 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
defined('MOODLE_INTERNAL') || die();
function theme_universe_child_get_pre_scss($theme)
{
// Load the settings from the parent.
$theme = theme_config::load('universe');
// Call the parent themes get_pre_scss function.
return theme_universe_get_pre_scss($theme);
}
function theme_universe_child_get_default_blocks()
{
return array(
'incourse' => array(
'side-pre' => array('comments')
),
'course-view' => array(
'side-pre' => array('comments')
),
);
}