MDL-81047 core: Rename standard_head_html_prepend hook

This commit updates the name of the standard_head_html_prepend hook to
meet coding style agreed in MDL-79077.
This commit is contained in:
Andrew Nicols
2024-03-08 23:56:39 +08:00
parent 38a3310c92
commit 0a30867cdf
6 changed files with 12 additions and 15 deletions
@@ -26,7 +26,7 @@ namespace core\hook\output;
#[\core\attribute\tags('output')]
#[\core\attribute\label('Allows plugins to add any elements to the page <head> html tag.')]
#[\core\attribute\hook\replaces_callbacks('before_standard_html_head')]
class standard_head_html_prepend {
class before_standard_head_html_generation {
/** @var string $output Stores results from callbacks */
private $output = '';