Skip to content

Commit

Permalink
Merge branch 'MDL-34119_master' of git://github.com/lazydaisy/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Jul 1, 2012
2 parents abb98b8 + 4097797 commit 6e4c643
Show file tree
Hide file tree
Showing 6 changed files with 105 additions and 19 deletions.
38 changes: 25 additions & 13 deletions theme/splash/config.php
Expand Up @@ -33,10 +33,10 @@
'pagelayout',
'core',
'menus',
'red',
'green',
'blue',
'orange',
'blue',
'green',
'red',
'settings',
);

Expand All @@ -53,48 +53,57 @@
'standard' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
// Course page
'course' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
// Course page
'coursecategory' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'incourse' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'frontpage' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'admin' => array(
'file' => 'general.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'mydashboard' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'mypublic' => array(
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
'login' => array(
'file' => 'general.php',
'regions' => array()
'regions' => array(),
'options' => array('langmenu'=>true),
),
// Pages that appear in pop-up windows - no navigation, no blocks, no header.
'popup' => array(
Expand Down Expand Up @@ -137,8 +146,11 @@
'report' => array(
'file' => 'report.php',
'regions' => array('side-pre'),
'defaultregion' => 'side-pre'
'defaultregion' => 'side-pre',
'options' => array('langmenu'=>true),
),
);

$THEME->csspostprocess = 'splash_process_css';

$THEME->javascripts = array('colourswitcher');
63 changes: 63 additions & 0 deletions theme/splash/javascript/colourswitcher.js
@@ -0,0 +1,63 @@
YUI.add('moodle-theme_splash-colourswitcher', function(Y) {

// Available colours
var COLOURS = ['red','green','blue','orange'];

/**
* Splash theme colour switcher class.
* Initialise this class by calling M.theme_splash.init
*/
var ColourSwitcher = function() {
ColourSwitcher.superclass.constructor.apply(this, arguments);
};
ColourSwitcher.prototype = {
/**
* Constructor for this class
* @param {object} config
*/
initializer : function(config) {
var i, c;
// Attach events to the links to change colours so we can do it with
// JavaScript without refreshing the page
for (i in COLOURS) {
c = COLOURS[i];
// Check if this is the current colour
if (Y.one(document.body).hasClass('splash-'+c)) {
this.set('colour', c);
}
Y.all(config.div+' .colour-'+c).on('click', this.setColour, this, c);
}
},
/**
* Sets the colour being used for the splash theme
* @param {Y.Event} e The event that fired
* @param {string} colour The new colour
*/
setColour : function(e, colour) {
// Prevent the event from refreshing the page
e.preventDefault();
// Switch over the CSS classes on the body
Y.one(document.body).replaceClass('splash-'+this.get('colour'), 'splash-'+colour);
// Update the current colour
this.set('colour', colour);
// Store the users selection (Uses AJAX to save to the database)
M.util.set_user_preference('theme_splash_chosen_colour', colour);
}
};
// Make the colour switcher a fully fledged YUI module
Y.extend(ColourSwitcher, Y.Base, ColourSwitcher.prototype, {
NAME : 'Splash theme colour switcher',
ATTRS : {
colour : {
value : 'red'
}
}
});
// Our splash theme namespace
M.theme_splash = M.theme_splash || {};
// Initialisation function for the colour switcher
M.theme_splash.initColourSwitcher = function(cfg) {
return new ColourSwitcher(cfg);
}

}, '@VERSION@', {requires:['base','node']});
7 changes: 6 additions & 1 deletion theme/splash/layout/general.php
Expand Up @@ -107,7 +107,12 @@ class="styleswitch colour-orange"><img src="<?php echo $OUTPUT->pix_url('orange-
alt="orange" /></a></li>
</ul>
</div>
<?php echo $OUTPUT->lang_menu();?>
<?php
if (!empty($PAGE->layout_options['langmenu'])) {
echo $OUTPUT->lang_menu();
}
echo $PAGE->headingmenu
?>
</div>
<div id="logobox">
<?php
Expand Down
7 changes: 6 additions & 1 deletion theme/splash/layout/report.php
Expand Up @@ -107,7 +107,12 @@ class="styleswitch colour-orange"><img src="<?php echo $OUTPUT->pix_url('orange-
alt="orange" /></a></li>
</ul>
</div>
<?php echo $OUTPUT->lang_menu();?>
<?php
if (!empty($PAGE->layout_options['langmenu'])) {
echo $OUTPUT->lang_menu();
}
echo $PAGE->headingmenu
?>
</div>
<div id="logobox">
<?php
Expand Down
6 changes: 4 additions & 2 deletions theme/splash/lib.php
Expand Up @@ -90,12 +90,14 @@ function splash_set_customcss($css, $customcss) {
/**
* Adds the JavaScript for the colour switcher to the page.
*
* The colour switcher is a YUI moodle module that is located in
* theme/splash/yui/splash/splash.js
*
* @param moodle_page $page
*/
function splash_initialise_colourswitcher(moodle_page $page) {
user_preference_allow_ajax_update('theme_splash_chosen_colour', PARAM_ALPHA);
$page->requires->yui_module('moodle-theme_splash-colourswitcher',
'M.theme_splash.initColourSwitcher', array(array('div'=>'#colourswitcher')));
$page->requires->yui_module('moodle-theme_splash-colourswitcher', 'M.theme_splash.initColourSwitcher', array(array('div'=>'#colourswitcher')));
}

/**
Expand Down
3 changes: 1 addition & 2 deletions theme/splash/style/pagelayout.css
Expand Up @@ -199,7 +199,6 @@ p.prolog a:link {
margin:10px 0 0 15px;
}
.logininfo{
background:url([[pix:theme|loginicon]]) left no-repeat;
color:#fff;
margin:0;
padding:10px 10px 10px 40px;
Expand All @@ -213,7 +212,7 @@ p.prolog a:link {
}
#headermenu .langmenu{
position:relative;
top:35px;
top:30px;
width:210px;
}
a,
Expand Down

0 comments on commit 6e4c643

Please sign in to comment.