Commit | Line | Data |
---|---|---|
0f704140 PS |
1 | This files describes API changes in /theme/* themes, |
2 | information provided here is intended especially for theme designer. | |
edb7d5ad | 3 | |
bafdfedf AA |
4 | === 3.11 === |
5 | * The classname 'viewmode-cobmined' in course/management.php has been changed to 'viewmode-combined' | |
6 | ||
debf4835 | 7 | === 3.10 === |
1a5f0e6c | 8 | * The Bootstrap legacy css utilities from Bootstrap 2 and 4alpha have been removed. |
4394f9e3 BB |
9 | The syntax for the new Bootstrap 4.5 utility classes is {property}{sides}-{breakpoint}-{size} for sm, md, lg, and xl. |
10 | The size values are: | |
11 | 1: 0.25rem | |
12 | 2: 0.5rem | |
13 | 3: 1rem | |
14 | 4: 1.5rem | |
15 | 5: 2rem | |
16 | 6: 3rem | |
17 | ||
18 | In Bootstrap 4alpa a spacing utility class '.m-l-1' would mean margin-left 1rem. With the new spacing classes it should now be '.ml-3' | |
19 | ||
20 | These class names have changed: | |
21 | .row-fluid is now .row | |
22 | .text-error is now .text-danger | |
23 | ||
24 | These classes should no longer be used: | |
25 | .label .label-{type}, use .badge .badge-{type} instead | |
26 | .tag .tag-{type}, use .badge .badge-{type} instead | |
27 | .well, just set a border with .border and a background with .bg-light | |
28 | ||
e06f9a83 FR |
29 | === 3.9 === |
30 | ||
31 | * Add class .d-print-block to #page, #page-wrapper and #page content to fix Firefox printing problems | |
119a83f1 NH |
32 | * A function to core_renderer has been added, secure_layout_login_info. This allows the boost and classic templates to |
33 | display the users full name in a secure layout. | |
34 | * Secure layout in themes boost and classic have been modified to allow language selection as they now call the | |
35 | output.secure_layout_language_menu function. | |
e06f9a83 | 36 | |
cddcfccc MM |
37 | === 3.8 === |
38 | ||
99c0463c EL |
39 | * Moodle does not produce chunked CSS anymore, instead an unique css fils is generated and served (MDL-55751). This implies: |
40 | * css_chunk_by_selector_count() has been removed. | |
41 | * css_store_css(), theme_styles_get_filename() and theme_styles_get_etag() don't accept any chunk-related param anymore. | |
cddcfccc MM |
42 | * The PHP Less compilier has now been removed from the core library. |
43 | Please consider migrating your theme to use SCSS. | |
0261d1ef AN |
44 | * It is now possible to use sub-directories when creating mustache templates. |
45 | The standard rules for Level 2 namespaces also apply to templates. | |
46 | The sub-directory used must be either an valid component, or placed inside a 'local' directory to ensure that it does not conflict with other components. | |
47 | ||
48 | The following are all valid template names and locations in your theme: | |
6097e14b GB |
49 | theme_themename/columns2: theme/[themename]/templates/columns2.mustache |
50 | theme_themename/local/layouts/columns2: theme/[themename]/templates/local/layouts/columns2.mustache | |
0261d1ef AN |
51 | |
52 | The following are core templates, locations, and override locations in your theme: | |
6097e14b GB |
53 | core/modal: lib/templates/modal.mustache => theme/[themename]/templates/core/modal.mustache |
54 | mod_forum/forum_post: mod/forum/templates/forum_post.mustache => theme/[themename]/templates/mod_forum/forum_post.mustache | |
55 | mod_forum/local/post/user: mod/forum/templates/local/post/user.mustache => theme/[themename]/templates/mod_forum/local/post/user.mustache | |
0261d1ef AN |
56 | |
57 | The following are _invalid_ template names and locations: | |
58 | theme_themename/layouts/columns2: theme/[themename]/layouts/columns2.mustache | |
cddcfccc | 59 | |
e994dea0 AN |
60 | === 3.7 === |
61 | * The core/form_autocompelte_input template now has a `data-tags` attribute. | |
1baadc87 MM |
62 | * Boost theme renderer overrides have now been migrated to core. |
63 | * Renderers that were overridden by Boost are now in Bootstrapbase | |
64 | * Core templates in Boost have now moved into core | |
65 | * Templates that were overridden by boost are now located in Bootstrapbase | |
a5a6df54 | 66 | * Themes bootstrapbase, clean & more have now been removed. |
e994dea0 | 67 | |
a266ae30 TH |
68 | === 3.6 === |
69 | ||
fed67b67 BB |
70 | * A new callback has been added to the theme layout files allowing plugins to inject their content |
71 | into the page. For Boost it was added as a mustache variable "{{{ output.standard_after_main_region_html }}}" in | |
72 | templates/columns1.mustache and templates/columns2.mustache. In bootstrapbase it was added as a | |
73 | function call "$OUTPUT->standard_after_main_region_html()" in layout/columns1.php, layout/columns2.php. | |
74 | and layout/columns3.php. Child themes not inheriting these templates should add the function call | |
75 | after the div containing the main content region. Please refer to the messaging drawer UI for an example of | |
76 | making use of this new feature. | |
a266ae30 TH |
77 | * The body tag has various browser-specific classes for those cases where some |
78 | browser-sniffing is unavoidable. This used not to recognised Microsoft Edge, | |
79 | but now it does (class 'edge'). Also, both Safari and Chrome used to be | |
80 | class 'safari', but now there are separate classes 'safari' and 'chrome'. | |
81 | The body's class should change to match the browser: | |
82 | - Google Chrome (Mac & Window): The body class should change from safari to chrome. | |
83 | - Google Chrome (Android) : The body class should change from safari, android to chrome, android. | |
84 | - Microsoft Edge: The body class should change from safari to edge. | |
85 | - Mobile safari: The class ios should exist, safari class should be removed. | |
86 | * Remove class .safari styling from activity chooser dialog for theme boost and bootstrapbase. | |
216b8947 MG |
87 | * The following functions and classes have been finally deprecated and can not be used anymore: |
88 | * css_is_colour() | |
89 | * css_is_width() | |
90 | * css_sort_by_count() | |
db03bff7 | 91 | * core_course_renderer::add_modchoosertoggle() |
216b8947 | 92 | * class css_optimiser |
a266ae30 | 93 | |
46676b76 AB |
94 | === 3.4 === |
95 | ||
96 | * There was a mustache template login.mustache in /lib/templates/ rendering the login form | |
97 | and a template with the same name in /theme/boost/templates/ rendering the pagelayout "login". | |
98 | To prevent misunderstanding when overriding one of these templates in a Boost child theme, | |
99 | the first one was renamed to loginform.mustache - see MDL-58970. | |
d7d2a72f AB |
100 | * The Boost flat navigation nodes now have several data-attributes which let plugin developers |
101 | access properties from the underlying navigation nodes in the browser - see MDL-59425. | |
d8cb4615 MN |
102 | * Navigation between activities via a previous and next link was added to Boost, Clean and Bootstrapbase. This |
103 | is made possible by a new function core_renderer->activity_navigation(). | |
4a8dfef0 JB |
104 | * Theme designers may now place the Reset tour on this page link where required by adding an empty |
105 | container (e.g. <div class="tool_usertours-resettourcontainer"></div>) to their layouts. | |
46676b76 | 106 | |
f745b812 DP |
107 | === 3.3 === |
108 | ||
109 | * As boost-based themes no longer use the moodle-core-popuphelp help popups, the javascript | |
110 | setup for this module have been moved from core standard_head_html to the bootstrapbase | |
111 | renderer. If your theme needs this javascript you will need to ensure the bootstrap renderer | |
112 | is called, or require the JS yourself | |
113 | ||
2258b4dc FM |
114 | === 3.2 === |
115 | ||
862816ee FM |
116 | * Removed themes: base, canvas |
117 | During the upgrade process the themes will be uninstalled and all their settings will be deleted. | |
118 | If you wish to keep your theme and its settings, download it from moodle.org and put it back in | |
119 | the theme/ directory BEFORE UPGRADING. | |
2ede86d7 | 120 | * Bootstrap 4 was added as part of a the new theme 'boost'. |
862816ee FM |
121 | * Some backwards and forwards compatibility has been added for different bootstrap versions. |
122 | This is to allow the same markup to work in "clean" and "boost" themes a lot of the time. | |
123 | It is also to allow user text with bootstrap classes to keep working in the new theme. | |
d3c35f93 FM |
124 | * Using .dir-rtl for RTL styling is deprecated and should not be used any more. From now |
125 | the styles are automatically flipped when the language is right-to-left. However, | |
126 | as this is not always perfect, you can define exceptions. Please refer to the documentation | |
127 | of the tool RTLCSS-PHP for more information: https://github.com/moodlehq/rtlcss-php | |
862816ee FM |
128 | * Themes can now automatically compile SCSS on the fly. This works the same way as it |
129 | does compiling LESS on the fly, effecitvely adding $THEME->scss to your config. The | |
130 | latter can either be the name a SCSS file (without extension) in your theme's scss/ folder, | |
131 | or a Closure which will return the main SCSS content. | |
132 | * Two new callbacks allow themes to inject SCSS code before and after the content provided | |
133 | by the SCSS file $THEME->scss. See $THEME->prescsscallback and $THEME->extrascsscallback. | |
134 | * A new callback can be defined to post process the CSS using an object representation | |
135 | of the CSS tree ($THEME->csstreepostprocess). This gives a lot more flexibility than a | |
136 | simple find and replace. Refer to 'boost' for an example, and to PHP-CSS-Parser. | |
137 | (https://github.com/sabberworm/PHP-CSS-Parser) for the API. | |
138 | * A new core setting now enables admins to upload the logos of their site. Using the | |
139 | following methods, themers can instantly support branding logos without the need | |
140 | to implement specific theme settings: | |
141 | * $OUTPUT->get_logo_url($maxwidth, $maxheight); | |
142 | * $OUTPUT->get_compact_logo_url($maxwidth, $maxheight); | |
d3c35f93 FM |
143 | * The class .dir-ltr should not be used any more. To force LTR styles use the directive |
144 | to remove the rule when the language is RTL. See RTLCSS-PHP for more information. | |
113efed5 FM |
145 | * A new class .text-ltr may be used to force the direction to LTR. This is especially useful |
146 | for forms fields (numbers, emails, URLs must not be RTL'd), and for displaying code | |
147 | snippets or configuration samples. | |
9d1402ab | 148 | * A new theme config 'requiredblocks' allows a theme to define which blocks are deletable. |
4f2378d9 FM |
149 | * You may no longer override the following core_course_renderer methods. |
150 | See course/upgrade.txt for more information: | |
151 | - course_modchooser_module_types | |
152 | - course_modchooser_module | |
153 | - course_modchooser_title | |
891750bc FM |
154 | * The question chooser now uses a renderable and a template, the following methods |
155 | have been deprecated in favour of core_question_bank_renderer::render_qbank_chooser(). | |
156 | - qbank_chooser | |
157 | - qbank_chooser_types | |
158 | - qbank_chooser_qtype | |
159 | - qbank_chooser_title | |
d52ebf11 DP |
160 | * The 'css optimiser' has been removed. Developers are encouraged to use tools such as stylelint |
161 | to help optimise their css. Some functions and classes in lib/csslib.php (which was not for public use) | |
162 | have been deprecated: | |
163 | - css_is_colour | |
164 | - css_is_width | |
165 | - css_sort_by_count | |
166 | - class css_optimiser no longer does anything. | |
862816ee FM |
167 | * CLI svgtool.php has moved from theme/base/cli to admin/cli and paths should be relative to the new location. |
168 | * mod_chat will now display the 'course theme' option for all themes (previously it was only displayed on | |
169 | bootstrap2 based themes). | |
b11916d3 MG |
170 | * Theme can choose how to display "Add a block" control in $THEME->addblockposition, default value is |
171 | BLOCK_ADDBLOCK_POSITION_DEFAULT that displays it as a fake block in editing mode. | |
2258b4dc | 172 | |
4040c8b3 DM |
173 | === 3.1 === |
174 | ||
175 | * A new search box for global search has been added to bootstrap and clean layout files, if | |
176 | your theme is overwriting columns1.php, columns2.php or columns3.php you will need to add a | |
177 | call to core_renderer::search_box to display it. | |
24346803 AN |
178 | * Notification templates have been renamed to better suit types of alert |
179 | rather than uses. The following changes have been made: | |
180 | * notification_problem.mustache => notification_error.mustache | |
181 | * notification_message => notification_info | |
182 | * notification_redirect => notification_warning | |
f59f89b4 MG |
183 | * Method core_course_renderer::course_section_cm_name() is split into two methods, custom themes that override |
184 | this method must be modified or otherwise editing functionality may become broken. This method is now also used by | |
185 | social activities block and site menu block to display activities names. | |
4040c8b3 | 186 | |
c7b73854 | 187 | === 3.0 === |
188 | ||
189 | * The renderer function core_availability_renderer::multiple_messages was changed to | |
190 | render_core_availability_multiple_messages, requiring a parameter of the new | |
191 | \core_availability\multiple_messages type. | |
5e9a937b JO |
192 | * Meta description is now included in standard_head_html for homepage in bootstrapbase. |
193 | If your theme includes a meta description directly in a layout for the frontpage, | |
194 | you will need to remove it or override the standard_head_html instead. | |
45cd3f60 DM |
195 | * Themes Clean and More have been updated to use a new navbar_button function, which shows the |
196 | hamburguer icon (responsive menu) or not depending on custom and language menus settings; | |
197 | themes extending bootstrapbase and overriding its layouts can call replace their "a.btn-navbar" | |
198 | node for a call to this function. | |
c47f3803 | 199 | * Themes Clean and More page header logo only displays on front page and login page. |
c08b52aa DM |
200 | * A new function navbar_home has been added to theme_clean and theme_more to display the navigation bar link |
201 | to the site home. Two new settings have been added to control if the link should be a small logo image, text | |
202 | or both. It defaults to the current behaviour, only a text link. | |
c7b73854 | 203 | |
c58891f1 ME |
204 | === 2.9 === |
205 | ||
73b425be ME |
206 | * Themes Bootstrapbase, Clean and More have undergone some changes for RTL layouts see - MDL-48160. |
207 | ||
c58891f1 | 208 | * Themes Clean amd More page header background logo, if loaded, no longer links to the home page. |
c36c3d07 AG |
209 | * Themes Clean and More have been updated to use the renderer full_header(). This renderer (when in a user context) displays a message button |
210 | and consequently the link to message users have been removed from various pages. It is recommended that theme developers use this | |
211 | renderer to ensure that they do not suffer from a reduction in access to this feature. | |
212 | * $OUTPUT->context_header() has been introduced to produce headers similar to what full_header() creates. This renderer is used for creating | |
213 | subsequent headers in a page. If provided with user information, this render will also display a message button like full_header(). | |
c58891f1 | 214 | |
c10fa5da | 215 | === 2.8 === |
c58891f1 | 216 | |
a2633964 ME |
217 | * Themes Base and Canvas layout/embedded.php has changed. |
218 | The div id="content" has been changed to id="page-content" - see MDL-47915. | |
c10fa5da DW |
219 | * All mod_assign CSS selectors have been qualified with ".path-mod-assign". This means any custom CSS |
220 | rules for mod_assign in a theme may need to be updated. | |
ebdcb292 SH |
221 | * The following render methods were renamed, if you have overridden any of these you will need to update your renderer: |
222 | - report_log_renderer::render_report_log_renderable => report_log_renderer::render_report_log | |
223 | - report_loglive_renderer::render_report_loglive_renderable => report_loglive_renderer::render_report_log | |
a2a4ad89 | 224 | * On calendar view screen the course selector and new event button have been swapped, custom CSS for .path-calendar might be affected. |
2f6a0e5f MN |
225 | * The functions search_listing() and search_pagination() in the core_course_management_renderer class take the searched string |
226 | as an extra parameter - see MDL-46902. | |
f2b4b2ad | 227 | * Themes with non-fixed headers must have the .navbar class in their navbar in order for floating headers in the grader report to work - see MDL-46658. |
6d8eba1a JC |
228 | * To accomodate the new gradebook, use of overflow: hidden or overflow-x: hidden CSS rules on DOM elements containing the |
229 | #user-grades table, visible at [Course administration -> Grades] is not recommended. Please use overflow: auto or | |
230 | overflow: scroll instead, as this will handle medium to large courses with multiple activities better (more information available at https://docs.moodle.org/dev/Theme_upgrade_notes ). | |
231 | * The new user menu can be added to themes by calling $OUTPUT->user_menu(); we recommend doing so in a backwards-compatible way (see https://docs.moodle.org/dev/Theme_upgrade_notes for more information). | |
c10fa5da | 232 | |
6b216432 AA |
233 | === 2.7 === |
234 | ||
31f28b6a PŠ |
235 | * CSS related functions in theme class and csslib.php were refactored, addons that are |
236 | using this private API need to be updated | |
ba55be91 | 237 | * Please update your css to use 'tr:nth-of-type(odd/even)' instead of '.r0/.r1' to apply tr specific css for various tables. |
98396c23 SH |
238 | These classes are deprecated now and will be removed in Moodle 2.9. This has done to better support styling tables that will be altered by JavaScript. |
239 | Here is an example to update your css: | |
240 | Old code: | |
241 | table.generaltable .r0 {background-color: #F0F0F0;} | |
242 | table.generaltable .r1 {background-color: #F0F0F0;} | |
243 | New code: | |
98396c23 | 244 | table.generaltable > tbody > tr:nth-of-type(even) {background-color: #F0F0F0;} |
ba55be91 | 245 | table.generaltable > tbody > tr:nth-of-type(odd) {background-color: #F0F0F0;} |
6b216432 | 246 | |
7a2dabcb FM |
247 | Removed themes: |
248 | * afterburner, anomaly, arialist, binarius, boxxie, brick, formal_white, formfactor, fusion, leatherbound, | |
249 | magazine, nimble, nonzero, overlay, serenity, sky_high, splash, standard and standardold have been removed. | |
250 | During the upgrade process the themes will be uninstalled and all their settings will be deleted. | |
251 | If you wish to keep your theme and its settings, download it from moodle.org and put it back in | |
252 | the theme/ directory BEFORE UPGRADING. | |
6b216432 | 253 | |
71715870 JC |
254 | Notes: |
255 | * z-index on #dock has been adjusted from 11000 to 5000 to prevent overlapping issues with fullscreen TinyMCE in Base theme. | |
256 | ||
699e2fd0 | 257 | === 2.6 === |
3b42864d | 258 | |
7c2efc11 JM |
259 | Removed themes: |
260 | * "My Mobile" theme has been removed (see MDL-40874). | |
261 | During the upgrade process "My Mobile" theme will be uninstalled and all its settings will be deleted. | |
262 | "My Mobile" theme and its extending themes will fallback to the mobile friendly "Clean" theme. | |
263 | If you wish to keep "My Mobile" theme and its settings, BEFORE UPGRADING you can copy the files from the | |
264 | unmaintained plugin into theme/mymobile. | |
265 | The unmaintained plugin can be downloaded at https://moodle.org/plugins/pluginversion.php?id=4563 | |
699e2fd0 | 266 | Notes: |
faf6010b | 267 | * There have been several changes made to the classes used on headings throughout Moodle. |
268 | This was done as per the Moodle HTML guidelines. h1 and h2 elements should have no classes, h3 and lower headings | |
269 | may have descriptive classes only (any classes must properly describe the relation between the header and its content). | |
699e2fd0 | 270 | * The parameters value for the following functions have been modified: core_renderer::heading() and core_renderer::heading_with_help(). |
3b42864d | 271 | This means that headings using the default options will no longer have the class "main" which was the previous default. |
d61c96b6 | 272 | * The file picker and activity chooser have been converted to use M.core.dialogue. This means the styles |
3b42864d RW |
273 | for these elements have changed in the base and bootstrapbase themes and you will need to copy the new styles |
274 | if you are not inheriting from either one of these themes. | |
b4c6b42e | 275 | * For the themes based on bootstrapbase please also read theme/bootstrapbase/upgrade.txt |
e5de4933 SH |
276 | * A new component action_menu is now used to display editing icons for courses and blocks within a drop down. If you have a theme that doesn't |
277 | extend base, canvas, or clean then you will need to style for this new component within your theme. | |
166ac0a3 SH |
278 | * The maintenance layout now has a special renderer that extends the core_renderer in order to prevent some methods from interacting |
279 | with the database. Please be aware that for the maintenance layout some methods now always return an empty string. | |
280 | This has been done because it is important that during maintenance routines we don't show any links, interact with the database, | |
281 | or interact with caches as doing so may lead to errors, | |
282 | Please see the maintenance renderer notes below for details on the functions affected. | |
e5de4933 SH |
283 | |
284 | Renderer changes: | |
285 | * core_course_renderer::course_section_cm_edit_actions has two new optional arguments and now uses and action_menu component. | |
286 | * core_course_renderer::course_section_cm has been altered to call core_course_renderer::course_section_cm_edit_actions with the two new arguments. | |
287 | * core_renderer::block_controls has a new optional argument (the block id) and has been altered to use the new action_menu component. | |
288 | * core_renderer::block_header has been altered to give core_renderer::block_controls the new second argument, the block id. | |
289 | * core_renderer::action_link has a new argument, and optional icon that can be rendererd into the link. | |
290 | ||
faf6010b | 291 | Selector changes: |
292 | * Changes to the classes given to the header produced when rendering a single section within a course. | |
293 | .section-navigation.header.headingblock => .section-navigation.navigationtitle | |
294 | * Changes to the classes used when producing the course information box that lists courses. | |
295 | The name (h3|div} of both courses and categories used to have .name, for courses in the list this was changed to .coursename and for categories in the list this was changed to .categoryname. | |
296 | * Classes ".header and .headingblock" were removed from all front page content headings. | |
297 | * Classes ".headingblock .header .tag-header" were removed from the tag index page | |
298 | ||
166ac0a3 SH |
299 | Maintenance renderer notes: |
300 | When the maintenance layout is being used $OUTPUT will be an instance of core_renderer_maintenance. | |
301 | This renderer mimics the core_renderer except that the following functions always return an empty string. | |
cf9f5a17 | 302 | * core_renderer_maintenance::block |
303 | * core_renderer_maintenance::blocks | |
304 | * core_renderer_maintenance::blocks_for_regions | |
305 | * core_renderer_maintenance::course_header | |
306 | * core_renderer_maintenance::course_footer | |
307 | * core_renderer_maintenance::course_content_header | |
308 | * core_renderer_maintenance::course_content_footer | |
309 | * core_renderer_maintenance::custom_menu | |
310 | * core_renderer_maintenance::file_picker | |
311 | * core_renderer_maintenance::htmllize_file_tree | |
312 | * core_renderer_maintenance::lang_menu | |
313 | * core_renderer_maintenance::login_info | |
314 | * core_renderer_maintenance::user_picture | |
166ac0a3 SH |
315 | |
316 | If you have overridden methods of the core_renderer in your theme and want those changes to be shown during times of maintenance you | |
317 | will also need to override the core_renderer_maintenance and copy your customisations from the core_renderer to that. | |
318 | ||
90160639 | 319 | === 2.5.1 === |
d3e5a21e SH |
320 | |
321 | Notes: | |
322 | * Block drag and drop functionality has been improved so that it works regardless of what block regions you use | |
323 | or how many block regions you have. In order to benefit from this improvement you must convert your calls from | |
324 | $OUTPUT->blocks_for_region() to $OUTPUT->blocks. | |
325 | ||
326 | Optional changes: | |
327 | * Theme config can nominate block regions to swap if the user is using a rtl languages such as Hebrew. | |
328 | $THEME->blockrtlmanipulations should be an associative array, the key is the original block region, and the | |
329 | value should be where the blocks in that region should be displayed. | |
330 | * New $OUTPUT methods to replace code that was previously using $PAGE. Converting to these methods is optional | |
331 | but highly recommended. Refer to the bootstrapbase layouts for examples. | |
332 | - $OUTPUT->body_attributes() returns a string you can use for the body id and classes. | |
333 | - $OUTPUT->blocks() returns HTML to display a block region and all of its blocks. This adds data attributes | |
334 | that ensure drag and drop of blocks will work no matter what block regions or how many you have. | |
335 | - $OUTPUT->page_heading() returns the page heading. Replaces $PAGE->heading. | |
336 | - $OUTPUT->page_heading_button() returns the button to display with the heading. Replaces $page->button. | |
337 | - $OUTPUT->page_doc_link() returns the link to moodle docs for the page. Replaces page_doc_link(). | |
338 | - $OUTPUT->page_heading_menu() returns the heading menu for the page. Replaces $PAGE->headingmenu. | |
339 | - $OUTPUT->page_title() Returns the title to use for the head section. | |
340 | - $OUTPUT->favicon() returns the URL to the favicon. | |
341 | ||
342 | Renderer changes: | |
343 | * core_renderer::navbar now returns an empty string if there are no navigation items to display. | |
344 | * core_renderer::custom_menu now adds a class "custom_menu" to the div that contains the HTML for the custom menu. | |
345 | ||
fc7defef JF |
346 | === 2.5 === |
347 | ||
09ae7ee0 MG |
348 | required changes: |
349 | * Functions core_course_renderer::course_category_tree() and course_category_tree_category() | |
350 | are deprecated | |
351 | * Significant changes in rendering of courses and categories listings, lots of CSS classes changed, | |
352 | several functions such as print_courses(), print_whole_category_list(), print_category_info() | |
353 | are moved to course renderer. | |
354 | See http://docs.moodle.org/dev/Courses_lists_upgrade_to_2.5 | |
355 | ||
fc7defef JF |
356 | DOM changes: |
357 | * changed the h1 title in the help popup to a h2. | |
97dbc8f2 | 358 | * new setting $THEME->yuicssmodules = array('cssreset', 'cssfonts', 'cssgrids', 'cssbase'); which |
12cb45f1 | 359 | allows themes to use different CSS reset normalisers such as cssnormalize YUI module. |
6e5d002e | 360 | * Re-wrote the user profile views to definition lists. |
12cb45f1 MN |
361 | * Re-wrote the table for the course completion status block to use html_table - added some CSS classes to |
362 | the table in the process (see MDL-35608). | |
5581c618 | 363 | * Cancel buttons have the class btn-cancel. |
12cb45f1 MN |
364 | * Added a z-index for the div#dateselector-calendar-panel so that the calendar pop-up renders above |
365 | the filemanager when they overlap, ie. the course settings page (see MDL-39047). | |
9074e478 DM |
366 | * Trivial change of CSS selectors used to display plugin status at the plugins overview |
367 | screen (#plugins-control-panel). | |
fc7defef | 368 | |
6671fa73 JF |
369 | Renderer changes: |
370 | * Mymobile theme changed to support more verbose move-block-here descriptions. | |
371 | ||
2d0e682d MV |
372 | === 2.4 === |
373 | ||
52b1ed5e MG |
374 | required changes: |
375 | * output course and course content header/footer that may be returned by course format (see MDL-36048) | |
e40bd746 | 376 | * span.completionprogress has been changed to a <div> and is not a float by default any more. |
52b1ed5e | 377 | |
fbb207c5 FM |
378 | deprecation: |
379 | * i/roles: Use t/assignroles instead | |
0cddd851 FM |
380 | * t/manual_item: Use i/manual_item instead |
381 | * t/unlock_gray: Use t/locked instead | |
f2bba619 | 382 | * t/userblue: Previously used to unblock a user, use t/unblock. |
5326675e BR |
383 | * c/course: Use i/courseevent instead |
384 | * c/group: Use i/groupevent instead | |
385 | * c/site: Use i/siteevent instead | |
386 | * c/user: Use i/userevent instead | |
99938034 | 387 | * t/clear: Use t/check instead |
c3847443 FM |
388 | * i/cross_red_big: Use i/invalid or i/grade_incorrect |
389 | * i/tick_green_big: Use i/valid or i/grade_correct | |
390 | * i/tick_amber_big: Use i/caution or i/grade_partiallycorrect | |
391 | * No more small versions of i/cross_red_small, i/tick_green_small and i/tick_amber_small, use their big equivalent. | |
501380a9 | 392 | * t/addgreen: Use t/add instead. |
851d3b7a | 393 | * i/approve: Use t/approve instead |
fbb207c5 | 394 | |
2d0e682d MV |
395 | optional changes: |
396 | * new optional boolean parameter $withlinks for public function login_info() in lib/outputrenderers.php (MDL-31365) | |
397 | * new layout option "nologinlinks" and new page layout "secure" e.g. for safebrowser and securewindow (MDL-31365) | |
bb128107 | 398 | * new class 'iconlarge' for 24x24 icons. |
fbb207c5 FM |
399 | * new icons i/export and i/import (sized 16x16). Previously export and import actions used i/backup and i/restore. |
400 | * new icon i/assignroles (sized 16x16), to prevent the use of i/roles which is 12x12. | |
401 | * new icon i/switchrole (sized 16x16), was previously using i/roles. Now is a copy of the new i/assignroles icon. | |
c42651d6 FM |
402 | * new icons i/enrolusers and t/enrolusers, previsouly i/users was used. |
403 | * new icon t/cohorts (sized 12x12), to prevent the use of i/cohorts which is 16x16. | |
06b7ed0a FM |
404 | * new icons t/sort_asc, t/sort_desc to use for ordering in table headers. |
405 | * new class 'iconsort' for icons used for ordering in table headers. | |
fa9c0aab | 406 | * new icons t/locked and t/unlocked (12x12) which should be used when there is no action associated to the icon. |
0cddd851 | 407 | * new icons i/folder (16x16), monochrome equivalent to f/folder. |
f2bba619 FM |
408 | * new icons t/addcontact, t/removecontact and t/messages, previously t/addgreen, t/delete and t/log were used in messaging. |
409 | * new icons t/unblock and i/twoway. | |
5326675e | 410 | * new icons i/courseevent, i/groupevent, i/siteevent and i/userevent (16x16) instead of c/* for calendar events. |
99938034 FM |
411 | * new icon t/markasread (12x12) to replace t/clear used in forums. |
412 | * new icon t/check (12x12) to replace t/clear which name does not reflect the icon meaning. | |
c22fbd38 | 413 | * new classes 'icon-pre' and 'icon-post' supposedly to be used when the icon is positioned before or after the text. This is not really used yet, but it's a start towards some standardisation of the icon selectors. |
c3847443 FM |
414 | * new icons i/valid, i/caution and i/invalid for generic statuses. |
415 | * new icons i/grade_correct, i/grade_partiallycorrect and i/grade_incorrect for grades. | |
851d3b7a | 416 | * new icon t/approve (12x12). |
0348468b | 417 | * new icon t/contextmenu (12x12) for a monochrome version of i/menu. |
ee362526 | 418 | |
33d9f44b PS |
419 | === 2.3 === |
420 | ||
421 | optional changes: | |
422 | * add new u/f3.png image when theme contains customised f1 and f2 default user images | |
423 | ||
0f704140 PS |
424 | === 2.2 === |
425 | ||
426 | required changes: | |
427 | * use new page content placeholder "echo $OUTPUT->main_content()" instead of "echo core_renderer::MAIN_CONTENT_TOKEN" | |
ee362526 | 428 | see git commit: 3b3f302855d7621405a8b93e49bd399d67a998d7 |
2d0e682d | 429 | * upgrade report selectors: search for "-course-report-" and replace with "-report-" |