Rev 131 | Rev 136 | 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(
'bellow-custom' => array('comments', 'messageteacher')
),
'course-view' => array(
'bellow-custom' => array('comments', 'messageteacher')
),
'course' => array(
'bellow-custom' => array('comments', 'messageteacher')
)
);
}