Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Creating a theme settings page: Difference between revisions

From MoodleDocs
No edit summary
(107 intermediate revisions by 10 users not shown)
Line 1: Line 1:
<div style="margin:30px;background-color:#FFF102;border:2px solid #A89F00;padding:30px;text-align:center;">Under construction. Please don't make any changes at this point I will remove this notice when I am done --[[User:Sam Hemelryk|Sam Hemelryk]]</div>This document looks at how to create and settings page for your theme and how to make use of those settings both within your CSS and within your layout files.
{{Template:Themes}}
This is a pretty advanced topic and will require that you have at least an intermediate knowledge of PHP, CSS, and development in general.
This document looks at how to create a settings page for your Moodle theme and how to make use of those settings within the CSS and layout files for your theme.


==Before we begin==
==Before we begin==
There is a huge body of knowledge that we must cover in following through this document and as such I think the best way to write this is as a tutorial for which my intentions are to replicate the standard theme but with a settings page that allows the admin to set background and font colours, set a logo to use with the page, and probably several other minor settings to change the way in which the theme is displayed.
If you want to "code along" with this tutorial - start by [https://github.com/damyon/moodle-theme_photo/releases downloading this theme] and unzipping it to your theme folder.


As part of this process I will of course have to create the base of my new theme which will be largely a copy/paste of the current standard theme. I expect that anyone working through this tutorial has previously read the tutorial I wrote on [[Themes 2.0 creating your first theme|creating your first theme]]. If you haven't go read it now because I'm not going to go into much detail until we get to the actual process of customising the theme and introducing the settings page.
This is a working example of a theme with some settings extending "Boost". You will need to be using Moodle 3.2 as the Boost theme is only available for this version of Moodle. The information in this tutorial is still valid for versions before 3.2.


So before we finally get this started please work check that you can tick of the everything on the following requirements check-list.
We will add some more settings to this theme and explain how to use the settings in the layout files and in the SCSS for this theme.  
* Have a Moodle installation that has already been installed and configured and is ready to use
* Have full read/write access to that installation.
* Be prepared to delete that installation at the end of this... we will destroy it!
* Have a development environment prepared and ready to use. This includes:
** Your favourite editor installed, running, and pointed at the themes directory of your installation.
** You browser open and your site visible.
** A bottomless coffee pot... decaf won't help you with this one.
* Have turned on theme designer mode, if you don't know what this is please read the [[Themes 2.0 creating your first theme|creating your first theme]] tutorial.
* Have turned on allowthemechangeonurl. This setting allows you to change themes on the URL and is very handy when developing themes.
* And finally an insane ambition to create a customisable theme.


==Our goals for this tutorial==
The following is just a list goals that I hope to achieve during this tutorial. They are laid out here so that I can easily refer back to them and so that you can easily find them.
# Create a new theme called '''demystified''' based on the standard theme within Moodle 2.0 but defines it own layout files.
# Make some minor changes to that theme to allow us to more easily see what is going on.
# Create a settings page for the demystified theme
# Add several settings to our settings page
# Use some of those settings to alter our CSS
# Use the rest of those settings within our layout file.
# Discuss the good, the bad, and limits of what we have just created.


So I can see you are all very excited about this point and that you would love to know what settings we are going to create; So here they are:
== settings.php ==
Themes define their settings and add them to the administration pages in their "settings.php". The code that builds all of the admin settings looks for this file in every installed plugin (not just themes).


A setting to ...
In the example theme we can see a settings.php file created already - lets see what it's doing.
* change the background colour (CSS).
* set the path to an image that we will use as a logo on all pages (Layout files).
* override the width of the block regions (CSS).
* allow a note to be added to the footer of all pages (Layout files).
* allow custom CSS to be written to do anything the user wants.


==Creating the demystified theme==
Before we start here I want to remind you that I am going to look at this only briefly as I am making the assumption that you have read the [[Themes 2.0 creating your first theme|creating your first theme]] tutorial.
Well lets get into it....
The first thing we need to do is create a directory for our theme which we will call demystified.
So within your Moodle directory create the following folder '''moodle/theme/demystified'''. At the same time you can also create the following files and folders which we will get to soon.
* The file '''moodle/theme/demystified/config.php''' for our config information.
* The directory '''moodle/theme/demystified/layout''' for our layout files.
* The directory '''moodle/theme/demystified/style''' for our css files.
* The file '''moodle/theme/demystified/style/core.css''' which will contain our special CSS.
Next we will copy the layout files from the base theme to our new theme demystified. We are basing our theme on the base theme however because we want to make changes to our layout files we will need to create out own. In this case coping them from the base them is fine... so copy all of the layout files from '''moodle/theme/base/layout''' to '''moodle/theme/demystified/layout'''.
There should be three files that you just copied:
# embedded.php
# frontpage.php
# general.php
Now we need to populate demystified/config.php with the settings for our new theme. They are as follows:
<code php>
<code php>
$THEME->name = 'demystified';
// This line protects the file from being accessed by a URL directly.                                                             
defined('MOODLE_INTERNAL') || die();          
</code>
</code>
Simply sets the name of our theme.
 
We put this in all php files that are not meant to be accessed directly. It prevents someone from typing the url to one of these files and accidentally running some code or seeing a strange error.


<code php>
<code php>
$THEME->parents = array('standard','base');
// This is used for performance, we don't need to know about these settings on every page in Moodle, only when                     
// we are looking at the admin settings pages.                                                                                     
if ($ADMIN->fulltree) {
</code>
</code>
This theme is extending both the standard theme and the base theme. Remember when extending a theme you also need to extend its parents or things might not work correctly.


<code php>
As the comment says, we don't need to build the whole list of settings on every single page in Moodle - only when we are actually browsing through the admin settings pages. So we don't create these settings unless they are needed on this page.
$THEME->sheets = array('core');
</code>
This tells our theme that we want to use the file '''demystified/style/core.css''' with this theme.


<div style="height:300px;overflow-y:scroll;">
<code php>
<code php>
$THEME->layouts = array(
    // Most backwards compatible layout without the blocks - this is the layout used by default
    'base' => array(
        'file' => 'general.php',
        'regions' => array(),
    ),
    // Standard layout with blocks, this is recommended for most pages with general information
    'standard' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // Main course page
    'course' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
        'options' => array('langmenu'=>true),
    ),
    'coursecategory' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // part of course, typical for modules - default page layout if $cm specified in require_login()
    'incourse' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // The site home page.
    'frontpage' => array(
        'file' => 'frontpage.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // Server administration scripts.
    'admin' => array(
        'file' => 'general.php',
        'regions' => array('side-pre'),
        'defaultregion' => 'side-pre',
    ),
    // My dashboard page
    'mydashboard' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
        'options' => array('langmenu'=>true),
    ),
    // My public page
    'mypublic' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    'login' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('langmenu'=>true),
    ),


     // Pages that appear in pop-up windows - no navigation, no blocks, no header.
     // Boost provides a nice setting page which splits settings onto separate tabs. We want to use it here.                        
    'popup' => array(
     $settings = new theme_boost_admin_settingspage_tabs('themesettingphoto', get_string('configtitle', 'theme_photo'));
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
    // No blocks and minimal footer - used for legacy frame layouts only!
    'frametop' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('nofooter'=>true),
    ),
    // Embeded pages, like iframe/object embeded in moodleform - it needs as much space as possible
    'embedded' => array(
        'file' => 'embedded.php',
        'regions' => array(),
        'options' => array('nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
    // Used during upgrade and install, and for the 'This site is undergoing maintenance' message.
    // This must not have any blocks, and it is good idea if it does not have links to
    // other places - for example there should not be a home link in the footer...
     'maintenance' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('noblocks'=>true, 'nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
);
</code>
</code>
</div>
Now that all looks very complicated however its really not too bad as it is just copied from the base theme's config.php file. We can do this because we copied the layout files from the base theme to begin with and for the time being there are no changes that we wish to make. Simply open up '''theme/base/config.php''' and copy the layouts from there.


And that is it. The config.php file for our demystified theme is complete. The full source is shown below:
In order to create any settings in our theme, we need to create the setting, and we need to add it to a settings page.
<div style="height:300px;overflow-y:scroll;">
<code php>
<?php


// This file is part of Moodle - http://moodle.org/
Normally before including the settings.php file for a plugin Moodle will create a variable named $settings which is an instance of the "admin_settingspage" class. In the plugin, settings can be added to the page by using $settings->add(). In this theme we do something special though - we replace the default $settings variable with a new one which has new functionality (tabs).  
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.


/**
This theme_boost_admin_settingspage_tabs class is defined in the boost theme (theme/boost/classes/admin_settingspage_tabs.php) and we can use it in boost or any theme that inherits from boost. It will probably be moved in to core so it can be used by any theme very soon because it is very useful.
* The demystified theme config file
*
* This theme was created to document the process of adding a settings page to a theme
*
* @copyright 2010 Sam Hemelryk
* @license  http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/


// The name of our theme
So $settings is our settings page that we can add things to.
$THEME->name = 'demystified';


// The other themes this theme extends
<code php>
$THEME->parents = array('standard','base');


// The CSS files this theme uses (located in the style directory)
    // Each page is a tab - the first is the "General" tab.                                                                        
$THEME->sheets = array('core');
     $page = new admin_settingpage('theme_photo_general', get_string('generalsettings', 'theme_photo'));     
 
     ...
// The layout definitions for this theme
     // Create some settings and add them to $page with $page->add().
$THEME->layouts = array(
     ...
    // Most backwards compatible layout without the blocks - this is the layout used by default
     // Must add the page after defining all the settings!                                                                         
    'base' => array(
     $settings->add($page)
        'file' => 'general.php',
</code>
        'regions' => array(),
     ),
    // Standard layout with blocks, this is recommended for most pages with general information
    'standard' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
     // Main course page
    'course' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
        'options' => array('langmenu'=>true),
    ),
    'coursecategory' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
     // part of course, typical for modules - default page layout if $cm specified in require_login()
    'incourse' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // The site home page.
     'frontpage' => array(
        'file' => 'frontpage.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    // Server administration scripts.
    'admin' => array(
        'file' => 'general.php',
        'regions' => array('side-pre'),
        'defaultregion' => 'side-pre',
    ),
     // My dashboard page
     'mydashboard' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
        'options' => array('langmenu'=>true),
    ),
    // My public page
    'mypublic' => array(
        'file' => 'general.php',
        'regions' => array('side-pre', 'side-post'),
        'defaultregion' => 'side-post',
    ),
    'login' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('langmenu'=>true),
    ),


    // Pages that appear in pop-up windows - no navigation, no blocks, no header.
To create each tab in this theme_boost_admin_settingspage_tabs class - we create a new settings pages, add all the settings to them and then add each one with $settings->add(). Each page will display as a separate tab.
    'popup' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
    // No blocks and minimal footer - used for legacy frame layouts only!
    'frametop' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('nofooter'=>true),
    ),
    // Embeded pages, like iframe/object embeded in moodleform - it needs as much space as possible
    'embedded' => array(
        'file' => 'embedded.php',
        'regions' => array(),
        'options' => array('nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
    // Used during upgrade and install, and for the 'This site is undergoing maintenance' message.
    // This must not have any blocks, and it is good idea if it does not have links to
    // other places - for example there should not be a home link in the footer...
    'maintenance' => array(
        'file' => 'general.php',
        'regions' => array(),
        'options' => array('noblocks'=>true, 'nofooter'=>true, 'nonavbar'=>true, 'nocustommenu'=>true),
    ),
);
</code>
</div>


The screenshot below shows the both the directory structure we have now created and a screenshot of the theme presently.
If we were not using tabs we could just create each setting and add it to the page with $settings->add().


[[Image:Theme.settings.page.01.png]]
To create a setting we create a subclass of the admin_setting class. These settings are all defined in lib/adminlib.php so you can search and find the right kind of setting.


To view the theme so far open you browser and enter the URL of your site followed by '?theme=demystified'. You should see the theme that we just created which will look exactly like the base standard theme.
The constructors for each of the settings classes tend to use similar arguments (but check the docs for each one to be sure).


The final thing that we want to do is add a little bit of CSS to the demystified theme that will both visually set this theme apart from the standard theme and second build a the base on which our settings can later build.
Example:
<code php>


I added the following snippet of CSS to the file '''demystified/style/core.css'''.
    $setting = new admin_setting_configtext('theme_photo/textsetting', get_string('textsetting','theme_photo'), get_string('textsetting_desc', 'theme_photo'), 'defaultvalue', PARAM_NOTAGS, 50);                                                              
<code css>
    // Any setting that should cause the CSS to be recompiled should have this callback.
html {background-color:#DDD;}
    $setting->set_updatedcallback('theme_reset_all_caches');                                                  
body {margin:30px;padding:0;border:1px solid #333;border-width:0 10px 0 10px;background-color:#333;}
    // We are using tabs, so add this to page. If we were not using tabs this would be $settings->add($setting);
body #page {background-color:#FFF;position:relative;top:-10px;}
    $page->add($setting);
.block .header {background-image:none;background-color:#0C5CAC;border:1px solid #0C5CAC;color:#FFF;}
.block {border-color:#4BA7FF;background-color:#DDEEFF;}
.block .content {background-color:#F1F8FF;}
a:link,
a:visited {color:#0C5CAC;}
a:hover {color:#C77500;}
#page #page-header {background-color:#0C5CAC;margin:0;padding:0;width:100%;color:#fff;}
#page #page-header a:link, #page #page-header a:visited {color:#FFAC02}
#page #page-header .navbar, #page #page-header .navbar a:link, #page #page-header .navbar a:visited {color:#0C5CAC;}
</code>
</code>


The CSS that we have just added to our theme sets a couple of colours on the front page. Presently this is the only CSS I will add, I know it isn't complete by any means but it achieves it's purpose as the screenshot below illustrates.
The first 4 arguments for all these settings are always the same - the last ones are specific to the type of setting. Explaining each one in order.
* theme_photo/textsetting - This is the name of the setting. It starts with the component name for the plugin - then / - then the unique name of the setting in this plugin.
* get_string('textsetting', 'theme_photo') - This is the name of the setting that will be displayed to the admin. We use a lang string so it can be translated.
* get_string('textsetting_desc', 'theme_photo') - This is the description of the setting that will be displayed to the admin. We use a lang string so it can be translated. We name this string the same as the name of the setting with _desc at the end. This is recommended so the related strings show up together in the translation website.
* defaultvalue - This is the default value of the setting and the install / upgrade for your plugin will set this value in the database automatically.  


[[Image:Theme.settings.page.02.png]]
The rest of the arguments are specific to the admin_setting_configtext class. They are:
* PARAM_NOTAGS - This is the type of text that should be validated in this setting. It can be any of the PARAM values defined in lib/moodlelib.php.
* 50 - This is the size of the field. Things like URLs should have a longer setting so all of the text will be visible.


And with that I will move on to the real purpose of this tutorial, creating the settings page
How does my setting get saved? It is stored in the mdl_config_plugins table as text and can be retrieved in any php code with:
<code php>


==Setting up the settings page==
  $value = get_config('theme_photo', 'textsetting');
With the demystified theme set up in its early stage it is time to create the settings page. This is where the real PHP fun begins.
</code>


For those of you who happen to be familiar with development of modules, blocks or other plugin types you have probably encountered settings pages before and this is not going to be any different.
What kinds of settings exist?


However for those who haven't which I imagine is most of you this is going to be quite a challenge. I will try to walk through this step by step however if at any point you get stuck don't hesitate to ask in the forums as I imagine you will get a speedy response.
There are heaps - some of the most useful are listed here:


===How settings pages work in Moodle===
* admin_setting_configtext - The most flexible setting, the user enters text.
Settings pages can be used by nearly every plugin type of which themes is of course one. The way in which it all works isn't too tricky to understand.
* admin_setting_configtextarea - General text area without html editor.  Useful for things like raw CSS
* admin_setting_confightmleditor - A full html editor using the systems default text editor. Good for editing HTML
* admin_setting_configpasswordunmask - Works like a password field - but isn't one. Good for shared secrets etc
* admin_setting_configfile - Good for listing a file stored on the server. Does not allow uploading files
* admin_setting_configexecutable - More specific version of admin_setting_configfile. The file is checked to make sure it can be executed by the webserver
* admin_setting_configcheckbox - Are you cool [ ]
* admin_setting_configselect - Choose from a list of values
* admin_setting_configstoredfile - Allow uploading of files and storing in moodle file storage
* admin_setting_configcolourpicker - Interactive colour picker


All of the settings for Moodle can be configured through the admin interfaces when logged in. I am sure that everyone here has seen those admin pages and has changed a setting or two before so you will all know what I am talking about. Well the settings page for theme is no different. It will be shown in the admin pages tree under '''Appearance > Themes''' and all we have to do is tell Moodle what settings there are.
== Add a setting and use it in SCSS (or less or css) ==


This is done by creating a settings.php file within out theme into which we will add code that tells Moodle about the settings we want to add/use.
Lets add a new setting and show how to use the value of the setting in our SCSS, less or css.
 
When telling Moodle about each setting we are simply creating a new admin_setting instance of the type we want and the properties we want and then adding it to our settings page.
First - we will add a new colour setting to our settings page.
 
There is really not much more too it at this level. Things can get very complex very fast so the best thing we can do now is start creating our settings.php file for the demystified theme and see where it leads us.
 
===Creating the settings page===
So as mentioned before we need a settings.php file which we will create now. To begin with create the file '''theme/demystified/settings.php''' and open it in your favourite editor so its ready to go.
 
Before we start adding code lets just remember the settings that we want to create:
* change the background colour (CSS).
* set the path to an image that we will use as a logo on all pages (Layout files).
* override the width of the block regions (CSS).
* allow a note to be added to the footer of all pages (Layout files).
* allow custom CSS to be written to do anything the user wants.
 
Alright.
 
Now thinking about this the first setting is as basic as it gets, all we need is a text box that the user can type an image into.
 
The second is to allow a logo to be used in the header of each page. What we want here is a path but should it be a physical path e.g. C:/path/to/image.png or should it be a web path e.g. http://mysite.com/path/to/image.png?
For the purpose of this tutorial I am going to go with a web path because it is going to be easier to code and will hopefully be a little easier to understand to begin with.
 
The third settings is very straight forward, we will just have a plain text box into which a width can be typed that will be used to determine the width of the block regions.
 
The forth and the fifth settings are also pretty straight forward, they we use a textarea into which the user can enter what ever they want and we will do something useful with it.
 
Now that we have an understanding about the settings we wish to define pull up your editor and lets start coding....


''theme/photo/settings.php''
<code php>
<code php>
<?php
/**
* Settings for the demystified theme
*/


$temp = new admin_settingpage('theme_demystified', get_string('configtitle','theme_demystified'));
    $name = 'theme_photo/cardbg';                                                                                                 
    $title = get_string('cardbg', 'theme_photo');                                                                                 
    $desc = get_string('cardbg_desc', 'theme_photo');                                                                             
    $setting = new admin_setting_configcolourpicker($name, $title, $desc, '#ffffff');
    $setting->set_updatedcallback('theme_reset_all_caches');                                                   
    $page->add($setting);
</code>
</code>
This is the first bit of code we must enter, the first line is of course just the opening php tag, secondly we have a comment that describes this file, and then we get create a new '''admin_settingspage object'''.
This admin_settingspage object that we have just created is a representation of our settings page and is the what we add our new settings to. When creating it we give it two arguments, first the name of the page which is in this case '''theme_''themename''''' and the title for the page which we get with the get_string method.
At the moment I'm not going to worry about adding the string, we will get to that latter once we have defined all of our settings.
====Background colour====


With the page now created as ''$temp'' lets add our first setting: Background colour.
Copy this new setting into the settings.php for theme_photo.


''theme/photo/lang/en/theme_photo.php''
<code php>
<code php>
// Background colour setting
$string['cardbg'] = 'Content background';                                                                                          
$name = 'theme_demystified/backgroundcolor';
$string['cardbg_desc'] = 'A setting to control the background colour for content.';  
$title = get_string('backgroundcolor','theme_demystified');
$description = get_string('backgroundcolordesc', 'theme_demystified');
$default = '#DDD';
$setting = new admin_setting_configtext($name, $title, $description, $default, PARAM_CLEAN, 12);
$temp->add($setting);
</code>
</code>
Thankfully this isn't as difficult as it probably initially looks.
The first line of code is creating a variable for the name of the background colour setting. In this case it is '''theme_demystified/backgroundcolor'''.


The name is very important, for the setting to be usable we have to follow a strict naming convention. '''theme_''themename''/''settingname''''' where '''''themename''''' is the name of the theme the setting is for and '''''settingname''''' is the name for the setting by which we will also use it.
Add the lang strings to the language file for the theme.


The second line of code creates a variable that contains the title of the setting. This is what the user sees to the right of the setting on the settings page and should be a short description of the setting. Here we are again using the get_string method so we will need to remember to add that string later on.
Now clear your caches and you should see the new setting show up on the settings page for this theme (which ever tab you added it to).


The third line of code sets the description. This should describe what the setting does or how it works and again we will use the get_string method.
This is good - we can change the setting and the value is saved - but it doesn't do anything yet.


The fourth line creates a variable that will be used as the default value for the setting. Because this setting is a colour we want an HTML colour to be the default value.
In this case we want to use this new setting to set the value of a bootstrap variable.


The fifth line is where we put it all together. Here we create a new '''admin_setting_configtext''' object. This object will represent the background colour setting.
In theme_photo we do not define any value for the $THEME->prescsscallback which means it will be using the callback from the parent theme which is "theme_boost_get_pre_scss". If we look in the lib.php file from boost too see what this callback is doing we will see it is getting the value of the 'brandcolor' setting and using it to set a SCSS variable named 'brand-primary'. In our theme we want to do the same thing, but for the 'cardbg' setting as well.


When we create it we need to give it 6 different things.
''theme/photo/config.php''
# The name of the setting. In this case we have a variable '''$name'''.
# The title for this setting. We used the variable '''$title'''.
# The description of the setting '''$description'''.
# The default value for the setting. '''$default''' is the variable this.
# The type of value we want the user to enter. For this we have used PARAM_CLEAN which tells Moodle to get rid of any nasties from what the user enters.
# The size of the field. In our case 12 characters will be plenty.
 
The sixth and final line of code adds our newly created setting to the admin page we created earlier.
 
That is it we have successfully created and added our first setting, however there are several more to settings to do, and three are a couple of important things that you need to be aware of before we move on.
 
First: There are several different types of settings that you can create and add to a page and each one may differ in what they need you to give them. In this case it was name, title, description, default, type, and size. However other settings will likely require different things. Smart editors like Netbeans or Eclipse can tell you what is required, otherwise you will need to research it.
 
Second: Normally settings are declared on one line as follows:
<code php>
<code php>
$temp->add(new admin_setting_configtext('theme_demystified/backgroundcolor', get_string('backgroundcolor','theme_demystified'), get_string('backgroundcolordesc', 'theme_demystified'), '#DDD', PARAM_CLEAN, 12));
$THEME->prescsscallback = 'theme_photo_get_pre_scss';
</code>
</code>
While this is structurally identical as all we have done is move everything onto one line and do away with the variables it is a little harder to read when you are learning all of this.


====The logo file====
''theme/photo/lib.php''
<code php>
<code php>
// Logo file setting
function theme_photo_get_pre_scss($theme) {                                                                                       
$name = 'theme_demystified/logo';
    global $CFG;                                                                                                                   
$title = get_string('logo','theme_demystified');
                                                                                                                                   
$description = get_string('logodesc', 'theme_demystified');
    $scss = '';                                                                                                                    
$setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL);
    $configurable = [                                                                                                             
$temp->add($setting);
        // Config key => [variableName, ...].                                                                                     
        'brandcolor' => ['brand-primary'],                                                                                        
        'cardbg' => ['card-bg'],                                                                                                   
    ];                                                                                                                             
                                                                                                                                   
    // Prepend variables first.                                                                                                   
    foreach ($configurable as $configkey => $targets) {                                                                           
        $value = isset($theme->settings->{$configkey}) ? $theme->settings->{$configkey} : null;                                   
        if (empty($value)) {                                                                                                       
            continue;                                                                                                              
        }                                                                                                                         
        array_map(function($target) use (&$scss, $value) {                                                                         
            $scss .= '$' . $target . ': ' . $value . ";\n";                                                                       
        }, (array) $targets);                                                                                                      
    }                                                                                                                             
                                                                                                                                   
    // Prepend pre-scss.                                                                                                           
    if (!empty($theme->settings->scsspre)) {                                                                                       
        $scss .= $theme->settings->scsspre;                                                                                       
    }                                                                                                                             
                                                                                                                                   
    return $scss;                                                                                                                  
}         
</code>
</code>


====Block region width====
This is a good way to create SCSS variables for use in your theme. Variables work well in SCSS because they can be defined as
<code php>
<code scss>
// Block region width
$myvariable: #FF0 !default;
$name = 'theme_demystified/regionwidth';
$title = get_string('regionwidth','theme_demystified');
$description = get_string('regionwidthdesc', 'theme_demystified');
$default = 200;
$choices = array(150, 170, 200, 240, 290, 350, 420);
$setting = new admin_setting_configselect($name, $title, $description, $default, $choices);
$temp->add($setting);
</code>
</code>
which means initialise this variable to #FF0 only if it has not been defined already. So because our callback defines variables in the pre SCSS callback - they are available for use anywhere else in our SCSS files.


====Footer note====
Less is "less good" than SCSS - so it's variables don't have this flexibility. For Less and CSS it's recommended that you would define a "csspostprocess" callback to insert the variables. There is an example of this in the "more" theme.
<code php>
// Foot note setting
$name = 'theme_demystified/footnote';
$title = get_string('footnote','theme_demystified');
$description = get_string('footnotedesc', 'theme_demystified');
$setting = new admin_setting_confightmleditor($name, $title, $description, '');
$temp->add($setting);
</code>


====Custom CSS====
''theme/more/config.php''
<code php>
<code php>
// Custom CSS file
$THEME->csspostprocess = 'theme_more_process_css';  
$name = 'theme_demystified/customcss';
$title = get_string('customcss','theme_demystified');
$description = get_string('customcssdesc', 'theme_demystified');
$setting = new admin_setting_configtextarea($name, $title, $description, '');
$temp->add($setting);
</code>
</code>


====Finishing settings.php====
''theme/more/lib.php''
With all of our settings defined and added to our page that we created right at the beginning it is time to finish it all off.
<code php>
<code php>
// Add our page to the structure of the admin tree
function theme_more_process_css($css, $theme) {
$ADMIN->add('themes', $temp);
    // This is not the exact code from theme_more - it has been simplified.
    $customcss = $theme->settings->customcss;             
    $tag = '[[setting:customcss]]';                                                                                               
    $replacement = $customcss;                                                                                                     
    if (is_null($replacement)) {                                                                                                   
        $replacement = '';                                                                                                         
    }                                                                                                                             
                                                                                                                                   
    $css = str_replace($tag, $replacement, $css);                                                                                  
                                                                                                                                   
    return $css;                                       
}
</code>
</code>
The above line of code is the final line for the page. It is adding the page that we have created '''$temp''' to the admin tree structure. In this case it is adding it to the themes branch.


The following is the completed source for our settings.php ..... for your copy/paste pleasure.
So this is replacing all instances of
<div style='height:300px;overflow:auto;'>
<code css>
<code php>
[[setting:customcss]]
<?php
 
/**
* Settings for the demystified theme
*/
 
// Create our admin page
$temp = new admin_settingpage('theme_demystified', get_string('configtitle','theme_demystified'));
 
// Background colour setting
$name = 'theme_demystified/backgroundcolor';
$title = get_string('backgroundcolor','theme_demystified');
$description = get_string('backgroundcolordesc', 'theme_demystified');
$default = '#DDD';
$setting = new admin_setting_configtext($name, $title, $description, $default, PARAM_CLEAN, 12);
$temp->add($setting);
 
// Logo file setting
$name = 'theme_demystified/logo';
$title = get_string('logo','theme_demystified');
$description = get_string('logodesc', 'theme_demystified');
$setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL);
$temp->add($setting);
 
// Block region width
$name = 'theme_demystified/regionwidth';
$title = get_string('regionwidth','theme_demystified');
$description = get_string('regionwidthdesc', 'theme_demystified');
$default = 200;
$choices = array(150, 170, 200, 240, 290, 350, 420);
$setting = new admin_setting_configselect($name, $title, $description, $default, $choices);
$temp->add($setting);
 
// Foot note setting
$name = 'theme_demystified/footnote';
$title = get_string('footnote','theme_demystified');
$description = get_string('footnotedesc', 'theme_demystified');
$setting = new admin_setting_confightmleditor($name, $title, $description, '');
$temp->add($setting);
 
// Custom CSS file
$name = 'theme_demystified/customcss';
$title = get_string('customcss','theme_demystified');
$description = get_string('customcssdesc', 'theme_demystified');
$setting = new admin_setting_configtextarea($name, $title, $description, '');
$temp->add($setting);
 
// Add our page to the structure of the admin tree
$ADMIN->add('themes', $temp);
</code>
</code>
</div>
with the value of the admin setting in all CSS from the theme.


===Creating a language file and adding our strings===
''theme/more/style/custom.css''
As I'm sure none of your have forgotten throughout the creation of the our settings.php page we used alot of strings that I mentioned we would set later on. Well not it is time to set those strings.
<code css>
 
/* Custom CSS Settings                                                                                                             
First up create the following directory and file for our language strings:
-------------------------*/                                                                                                        
* Directory '''theme/demystified/lang'''
[[setting:customcss]]
* Directory '''theme/demystified/lang/en'''
* File '''theme/demystified/lang/theme_demystified.php'''
 
What we have created here is the required structure for Moodle to start looking for language strings.
 
First up Moodle searches locates the lang directory, once found it looks within a that directory for a directory that makes the character code for the language the user has selected, by default this is '''en''' for English, once that is found it looks for the appropriate language file in this case theme_demystified from which it will load all language strings for our theme.
 
If English isn't your first language simply replace the en directory with one that uses your chosen languages character code (two letters).
 
We can now add our language strings to '''theme/demystified/lang/theme_demystified.php'''. Copy and paste the following lines of PHP into this file.
<code php>
<?php
 
/**
* This file contains the strings used by the demystified theme
*/
 
$string['backgroundcolor'] = 'Background colour';
$string['backgroundcolordesc'] = 'This sets the background colour for the theme.';
$string['configtitle'] = 'Demystified theme';
$string['customcss'] = 'Custom CSS';
$string['customcssdesc'] = 'Any CSS you enter here will be added to every page allowing your to easily customise this theme.';
$string['footnote'] = 'Footnote';
$string['footnotedesc'] = 'The content from this textarea will be displayed in the footer of every page.';
$string['logo'] = 'Logo';
$string['logodesc'] = 'Enter the URL to an image to use as the logo for this site. Should be http://www.yoursite.com/path/to/logo.png';
$string['regionwidth'] = 'Column width';
$string['regionwidthdesc'] = 'This sets the width of the two block regions that form the left and right columns.';
</code>
</code>


In the above lines of code I have added an entry for each language string we used in the settings.php file. When adding language strings like this make sure you use single quotes and try to keep things alphabetical - it helps greatly when managing strings.
This setting is included in one of the style sheets for the theme.
 
Now when we view the settings page there will not be any errors or strings missing.
 
===Having a look at what we have created===
Now that we have created our settings page (settings.php) and added all of the language strings it is time to have a look at things within your browser.
 
Open your browser and enter the URL to your installation. When you arrive your site login as an admin.
 
If you are not redirected to view new settings change your URL to http://www.yoursite.com/admin/ and your will see a screen to set the new theme settings we have just created. This lets us know that everything has worked correctly.
 
At any point now you are able to log in as admin and within the settings block browse to '''Site administration > Appearance > Themes > Demystified theme''' to change those settings.
 
The screenshot below shows you what you should see at this point:
 
[[Images:theme.settings.page.03.png]]
 
==Using the settings in CSS==


==Using the settings within our layout files==
== What about an image upload setting? ==


==The monster that we have just created==
Theme photo includes examples of image upload settings. Read [[Creating a theme based on boost]] for a detailed explanation of how this theme was created including how to add image upload settings and apply them in SCSS.


==Common pitfalls and useful notes==
==See also==


==More information==
* [[Adding theme upgrade code]]
* [[Themes 2.0]]
* [[Themes 2.0 creating your first theme]]
* [[Themes 2.0 overriding a renderer]]
* [[Styling and customising the dock]]

Revision as of 05:00, 1 December 2016

This document looks at how to create a settings page for your Moodle theme and how to make use of those settings within the CSS and layout files for your theme.

Before we begin

If you want to "code along" with this tutorial - start by downloading this theme and unzipping it to your theme folder.

This is a working example of a theme with some settings extending "Boost". You will need to be using Moodle 3.2 as the Boost theme is only available for this version of Moodle. The information in this tutorial is still valid for versions before 3.2.

We will add some more settings to this theme and explain how to use the settings in the layout files and in the SCSS for this theme.


settings.php

Themes define their settings and add them to the administration pages in their "settings.php". The code that builds all of the admin settings looks for this file in every installed plugin (not just themes).

In the example theme we can see a settings.php file created already - lets see what it's doing.

// This line protects the file from being accessed by a URL directly. defined('MOODLE_INTERNAL') || die();

We put this in all php files that are not meant to be accessed directly. It prevents someone from typing the url to one of these files and accidentally running some code or seeing a strange error.

// This is used for performance, we don't need to know about these settings on every page in Moodle, only when // we are looking at the admin settings pages. if ($ADMIN->fulltree) {

As the comment says, we don't need to build the whole list of settings on every single page in Moodle - only when we are actually browsing through the admin settings pages. So we don't create these settings unless they are needed on this page.

   // Boost provides a nice setting page which splits settings onto separate tabs. We want to use it here.                         
   $settings = new theme_boost_admin_settingspage_tabs('themesettingphoto', get_string('configtitle', 'theme_photo'));

In order to create any settings in our theme, we need to create the setting, and we need to add it to a settings page.

Normally before including the settings.php file for a plugin Moodle will create a variable named $settings which is an instance of the "admin_settingspage" class. In the plugin, settings can be added to the page by using $settings->add(). In this theme we do something special though - we replace the default $settings variable with a new one which has new functionality (tabs).

This theme_boost_admin_settingspage_tabs class is defined in the boost theme (theme/boost/classes/admin_settingspage_tabs.php) and we can use it in boost or any theme that inherits from boost. It will probably be moved in to core so it can be used by any theme very soon because it is very useful.

So $settings is our settings page that we can add things to.

   // Each page is a tab - the first is the "General" tab.                                                                         
   $page = new admin_settingpage('theme_photo_general', get_string('generalsettings', 'theme_photo'));      
   ...
   // Create some settings and add them to $page with $page->add().
   ...
   // Must add the page after defining all the settings!                                                                           
   $settings->add($page);  

To create each tab in this theme_boost_admin_settingspage_tabs class - we create a new settings pages, add all the settings to them and then add each one with $settings->add(). Each page will display as a separate tab.

If we were not using tabs we could just create each setting and add it to the page with $settings->add().

To create a setting we create a subclass of the admin_setting class. These settings are all defined in lib/adminlib.php so you can search and find the right kind of setting.

The constructors for each of the settings classes tend to use similar arguments (but check the docs for each one to be sure).

Example:

   $setting = new admin_setting_configtext('theme_photo/textsetting', get_string('textsetting','theme_photo'), get_string('textsetting_desc', 'theme_photo'), 'defaultvalue', PARAM_NOTAGS, 50);                                                               
   // Any setting that should cause the CSS to be recompiled should have this callback.
   $setting->set_updatedcallback('theme_reset_all_caches');                                                    
   // We are using tabs, so add this to page. If we were not using tabs this would be $settings->add($setting);
   $page->add($setting);

The first 4 arguments for all these settings are always the same - the last ones are specific to the type of setting. Explaining each one in order.

  • theme_photo/textsetting - This is the name of the setting. It starts with the component name for the plugin - then / - then the unique name of the setting in this plugin.
  • get_string('textsetting', 'theme_photo') - This is the name of the setting that will be displayed to the admin. We use a lang string so it can be translated.
  • get_string('textsetting_desc', 'theme_photo') - This is the description of the setting that will be displayed to the admin. We use a lang string so it can be translated. We name this string the same as the name of the setting with _desc at the end. This is recommended so the related strings show up together in the translation website.
  • defaultvalue - This is the default value of the setting and the install / upgrade for your plugin will set this value in the database automatically.

The rest of the arguments are specific to the admin_setting_configtext class. They are:

  • PARAM_NOTAGS - This is the type of text that should be validated in this setting. It can be any of the PARAM values defined in lib/moodlelib.php.
  • 50 - This is the size of the field. Things like URLs should have a longer setting so all of the text will be visible.

How does my setting get saved? It is stored in the mdl_config_plugins table as text and can be retrieved in any php code with:

  $value = get_config('theme_photo', 'textsetting');

What kinds of settings exist?

There are heaps - some of the most useful are listed here:

  • admin_setting_configtext - The most flexible setting, the user enters text.
  • admin_setting_configtextarea - General text area without html editor. Useful for things like raw CSS
  • admin_setting_confightmleditor - A full html editor using the systems default text editor. Good for editing HTML
  • admin_setting_configpasswordunmask - Works like a password field - but isn't one. Good for shared secrets etc
  • admin_setting_configfile - Good for listing a file stored on the server. Does not allow uploading files
  • admin_setting_configexecutable - More specific version of admin_setting_configfile. The file is checked to make sure it can be executed by the webserver
  • admin_setting_configcheckbox - Are you cool [ ]
  • admin_setting_configselect - Choose from a list of values
  • admin_setting_configstoredfile - Allow uploading of files and storing in moodle file storage
  • admin_setting_configcolourpicker - Interactive colour picker

Add a setting and use it in SCSS (or less or css)

Lets add a new setting and show how to use the value of the setting in our SCSS, less or css.

First - we will add a new colour setting to our settings page.

theme/photo/settings.php

   $name = 'theme_photo/cardbg';                                                                                                   
   $title = get_string('cardbg', 'theme_photo');                                                                                   
   $desc = get_string('cardbg_desc', 'theme_photo');                                                                               
   $setting = new admin_setting_configcolourpicker($name, $title, $desc, '#ffffff'); 
   $setting->set_updatedcallback('theme_reset_all_caches');                                                    
   $page->add($setting);

Copy this new setting into the settings.php for theme_photo.

theme/photo/lang/en/theme_photo.php $string['cardbg'] = 'Content background'; $string['cardbg_desc'] = 'A setting to control the background colour for content.';

Add the lang strings to the language file for the theme.

Now clear your caches and you should see the new setting show up on the settings page for this theme (which ever tab you added it to).

This is good - we can change the setting and the value is saved - but it doesn't do anything yet.

In this case we want to use this new setting to set the value of a bootstrap variable.

In theme_photo we do not define any value for the $THEME->prescsscallback which means it will be using the callback from the parent theme which is "theme_boost_get_pre_scss". If we look in the lib.php file from boost too see what this callback is doing we will see it is getting the value of the 'brandcolor' setting and using it to set a SCSS variable named 'brand-primary'. In our theme we want to do the same thing, but for the 'cardbg' setting as well.

theme/photo/config.php $THEME->prescsscallback = 'theme_photo_get_pre_scss';

theme/photo/lib.php function theme_photo_get_pre_scss($theme) {

   global $CFG;                                                                                                                    
                                                                                                                                   
   $scss = ;                                                                                                                     
   $configurable = [                                                                                                               
       // Config key => [variableName, ...].                                                                                       
       'brandcolor' => ['brand-primary'],                                                                                          
       'cardbg' => ['card-bg'],                                                                                                    
   ];                                                                                                                              
                                                                                                                                   
   // Prepend variables first.                                                                                                     
   foreach ($configurable as $configkey => $targets) {                                                                             
       $value = isset($theme->settings->{$configkey}) ? $theme->settings->{$configkey} : null;                                     
       if (empty($value)) {                                                                                                        
           continue;                                                                                                               
       }                                                                                                                           
       array_map(function($target) use (&$scss, $value) {                                                                          
           $scss .= '$' . $target . ': ' . $value . ";\n";                                                                         
       }, (array) $targets);                                                                                                       
   }                                                                                                                               
                                                                                                                                   
   // Prepend pre-scss.                                                                                                            
   if (!empty($theme->settings->scsspre)) {                                                                                        
       $scss .= $theme->settings->scsspre;                                                                                         
   }                                                                                                                               
                                                                                                                                   
   return $scss;                                                                                                                   

}

This is a good way to create SCSS variables for use in your theme. Variables work well in SCSS because they can be defined as $myvariable: #FF0 !default; which means initialise this variable to #FF0 only if it has not been defined already. So because our callback defines variables in the pre SCSS callback - they are available for use anywhere else in our SCSS files.

Less is "less good" than SCSS - so it's variables don't have this flexibility. For Less and CSS it's recommended that you would define a "csspostprocess" callback to insert the variables. There is an example of this in the "more" theme.

theme/more/config.php $THEME->csspostprocess = 'theme_more_process_css';

theme/more/lib.php function theme_more_process_css($css, $theme) {

   // This is not the exact code from theme_more - it has been simplified.
   $customcss = $theme->settings->customcss;               
   $tag = 'setting:customcss';                                                                                                 
   $replacement = $customcss;                                                                                                      
   if (is_null($replacement)) {                                                                                                    
       $replacement = ;                                                                                                          
   }                                                                                                                               
                                                                                                                                   
   $css = str_replace($tag, $replacement, $css);                                                                                   
                                                                                                                                   
   return $css;                                         

}

So this is replacing all instances of setting:customcss

with the value of the admin setting in all CSS from the theme. 

theme/more/style/custom.css /* Custom CSS Settings


*/

setting:customcss

This setting is included in one of the style sheets for the theme.

What about an image upload setting?

Theme photo includes examples of image upload settings. Read Creating a theme based on boost for a detailed explanation of how this theme was created including how to add image upload settings and apply them in SCSS.

See also