mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
33 lines
898 B
PHP
33 lines
898 B
PHP
<?PHP /* $Id$ */
|
|
|
|
/// This PHP script is used because it provides a place for setting
|
|
/// up any necessary variables, and lets us include raw CSS files.
|
|
/// The output of this script should be a completely standard CSS file.
|
|
|
|
if (!isset($themename)) {
|
|
$themename = NULL;
|
|
}
|
|
|
|
$nomoodlecookie = true;
|
|
require_once("../../config.php");
|
|
|
|
$subsheets = array('styles_layout', 'styles_font', 'styles_color');
|
|
|
|
/// There should be no need to touch the following
|
|
|
|
$lastmodified = filemtime('styles.php');
|
|
|
|
foreach ($subsheets as $subsheet) {
|
|
$lastmodifiedsub = filemtime($subsheet.'.css');
|
|
if ($lastmodifiedsub > $lastmodified) {
|
|
$lastmodified = $lastmodifiedsub;
|
|
}
|
|
}
|
|
|
|
$themeurl = style_sheet_setup($lastmodifiedsub, 600, $themename);
|
|
|
|
foreach ($subsheets as $subsheet) {
|
|
include_once($subsheet.'.css');
|
|
}
|
|
|
|
?>
|