Proyectos de Subversion Moodle

Rev

Rev 150 | Rev 155 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 150 Rev 154
Línea 2... Línea 2...
2
defined('MOODLE_INTERNAL') || die();
2
defined('MOODLE_INTERNAL') || die();
Línea 3... Línea 3...
3
 
3
 
4
$THEME->name = 'universe_child';
4
$THEME->name = 'universe_child';
Línea 5... Línea -...
5
$THEME->parents = ['universe'];
-
 
6
 
-
 
7
require_once(__DIR__ . '/lib.php');
5
$THEME->parents = ['universe'];
8
 
6
 
9
$THEME->sheets = ['styles', 'quiz'];
7
$THEME->sheets = ['styles', 'quiz'];
10
$THEME->editor_sheets = [];
8
$THEME->editor_sheets = [];
11
$THEME->editor_scss = ['styles'];
9
$THEME->editor_scss = ['styles'];
Línea 27... Línea 25...
27
    // Call a function from our parent themes lib.php file to fetch the content of the themes main SCSS file based on it's own config, not ours.
25
    // Call a function from our parent themes lib.php file to fetch the content of the themes main SCSS file based on it's own config, not ours.
28
    return theme_universe_get_main_scss_content($parentconfig);
26
    return theme_universe_get_main_scss_content($parentconfig);
29
};
27
};
Línea 30... Línea 28...
30
 
28
 
-
 
29
$THEME->prescsscallback = 'theme_universe_child_get_pre_scss';
-
 
30