Proyectos de Subversion Moodle

Rev

Rev 1 | Rev 29 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
defined('MOODLE_INTERNAL') || die();
3
 
4
function theme_universe_child_get_pre_scss($theme) {
5
    // Load the settings from the parent.
6
    $theme = theme_config::load('universe');
7
    // Call the parent themes get_pre_scss function.
28 ariadna 8
    return theme_universe_child_get_pre_scss($theme);
1 efrain 9
}