Difference between revisions of "Theme directory"
From Learnit docs
(Created page with "{{Themes}}In the standard Moodle distribution, all themes are placed in the theme/ directory. More information about the content of a typical theme directory/folder can be fo...") |
(Redirected page to Theme directory) (Tag: New redirect) |
||
Line 1: | Line 1: | ||
+ | #REDIRECT [[Theme_directory]] | ||
{{Themes}}In the standard Moodle distribution, all themes are placed in the theme/ directory. | {{Themes}}In the standard Moodle distribution, all themes are placed in the theme/ directory. | ||
Revision as of 11:11, 16 May 2019
Redirect to:
Template:ThemesIn the standard Moodle distribution, all themes are placed in the theme/ directory.
More information about the content of a typical theme directory/folder can be found in Theme basics
Change themes default directory for site
The storage location of themes may be altered, using the variables $CFG->themewww and $CFG->themedir. Themes from placed in the directory specified by these variables will then be available for selection using the theme selector.
For example, should you wish to place themes in a subdirectory called 'my_moodle_themes', your config.php might look like this:
$CFG->wwwroot = 'http://my.moodle.site.edu'; $CFG->dirroot = '/var/www/my.moodle.site.edu/public_html'; $CFG->themewww = $CFG->wwwroot . '/my_moodle_themes'; $CFG->themedir = $CFG->dirroot . '/my_moodle_themes';
Theme directory for Developers
Developers should follow the Theme directory guide
See also
- Using Moodle Feature request: Themes path in a VAR
- Moodle Tracker MDL-6784