mirror of
https://github.com/moodle/moodle.git
synced 2025-04-07 01:12:42 +02:00
Merge branch 'MDL-73165' of https://github.com/paulholden/moodle
This commit is contained in:
commit
dcc78ccbbb
@ -421,25 +421,12 @@ class renderer_base {
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether we should display the main logo.
|
||||
* @deprecated since Moodle 4.0
|
||||
* @todo final deprecation. To be removed in Moodle 4.4 MDL-73165.
|
||||
* @param int $headinglevel The heading level we want to check against.
|
||||
* @return bool
|
||||
*/
|
||||
public function should_display_main_logo($headinglevel = 1) {
|
||||
debugging('should_display_main_logo() is deprecated and will be removed in Moodle 4.4.', DEBUG_DEVELOPER);
|
||||
// Only render the logo if we're on the front page or login page and the we have a logo.
|
||||
$logo = $this->get_logo_url();
|
||||
if ($headinglevel == 1 && !empty($logo)) {
|
||||
if ($this->page->pagelayout == 'frontpage' || $this->page->pagelayout == 'login') {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
#[\core\attribute\deprecated(null, reason: 'It is no longer used', since: '4.0', final: true)]
|
||||
public function should_display_main_logo() {
|
||||
\core\deprecation::emit_deprecation_if_present([self::class, __FUNCTION__]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -5,6 +5,8 @@ information provided here is intended especially for developers.
|
||||
|
||||
* Final deprecation and removal of the function core_text::reset_caches().
|
||||
* The previously deprecated function `search_generate_text_SQL` has been removed and can no longer be used.
|
||||
* The following previously deprecated methods have been removed and can no longer be used:
|
||||
- `renderer_base::should_display_main_logo`
|
||||
|
||||
=== 4.4 ===
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user