Petr Škoda 1fbdfa49fc MDL-39129 convert afterburner to new theme setting file
This patch is based on work by Gareth J Barnard, Pau Ferrer Ocaña (crazyserver) and others.
2013-04-15 11:16:26 +02:00

53 lines
1.4 KiB
PHP

<?php
function afterburner_process_css($css, $theme) {
// Set the background image for the logo
$logo = $theme->setting_file_url('logo', 'logo');
$css = afterburner_set_logo($css, $logo);
// Set custom CSS
if (!empty($theme->settings->customcss)) {
$customcss = $theme->settings->customcss;
} else {
$customcss = null;
}
$css = afterburner_set_customcss($css, $customcss);
return $css;
}
function afterburner_set_logo($css, $logo) {
global $OUTPUT;
$tag = '[[setting:logo]]';
$replacement = $logo;
if (is_null($replacement)) {
$replacement = $OUTPUT->pix_url('images/logo','theme');
}
$css = str_replace($tag, $replacement, $css);
return $css;
}
function afterburner_set_customcss($css, $customcss) {
$tag = '[[setting:customcss]]';
$replacement = $customcss;
if (is_null($replacement)) {
$replacement = '';
}
$css = str_replace($tag, $replacement, $css);
return $css;
}
function theme_afterburner_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options = array()) {
if ($context->contextlevel == CONTEXT_SYSTEM and $filearea === 'logo') {
$theme = theme_config::load('afterburner');
return $theme->setting_file_serve('logo', $args, $forcedownload, $options);
} else {
send_file_not_found();
}
}