mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-07 08:05:25 +02:00
[ticket/12864] Add template event to header after stylesheets
https://tracker.phpbb.com/browse/PHPBB3-12864 PHPBB3-12864
This commit is contained in:
parent
65544066c2
commit
20c50e55b1
@ -89,6 +89,8 @@ function popup(url, width, height, name)
|
|||||||
|
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
|
||||||
|
<!-- EVENT acp_overall_header_stylesheets_after -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS} nojs">
|
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS} nojs">
|
||||||
|
@ -84,6 +84,7 @@ function find_username(url)
|
|||||||
</script>
|
</script>
|
||||||
<!-- EVENT acp_simple_header_head_append -->
|
<!-- EVENT acp_simple_header_head_append -->
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
<!-- EVENT acp_simple_header_stylesheets_after -->
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
||||||
|
@ -64,6 +64,12 @@ acp_overall_header_head_append
|
|||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add assets within the `<head>` tags in the ACP
|
* Purpose: Add assets within the `<head>` tags in the ACP
|
||||||
|
|
||||||
|
acp_overall_header_stylesheets_after
|
||||||
|
===
|
||||||
|
* Location: adm/style/overall_header.html
|
||||||
|
* Since: 3.1.0-RC3
|
||||||
|
* Purpose: Add assets after stylesheets within the `<head>` tags in the ACP
|
||||||
|
|
||||||
acp_posting_buttons_after
|
acp_posting_buttons_after
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
@ -96,6 +102,13 @@ acp_simple_header_head_append
|
|||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add assets within the `<head>` tags in the simple header of the ACP
|
* Purpose: Add assets within the `<head>` tags in the simple header of the ACP
|
||||||
|
|
||||||
|
acp_simple_header_stylesheets_after
|
||||||
|
===
|
||||||
|
* Location: adm/style/simple_header.html
|
||||||
|
* Since: 3.1.0-RC3
|
||||||
|
* Purpose: Add assets after stylesheets within the `<head>` tags in the simple header
|
||||||
|
of the ACP
|
||||||
|
|
||||||
acp_users_overview_options_append
|
acp_users_overview_options_append
|
||||||
===
|
===
|
||||||
* Location: adm/style/acp_users_overview.html
|
* Location: adm/style/acp_users_overview.html
|
||||||
@ -576,6 +589,14 @@ overall_header_page_body_before
|
|||||||
* Since: 3.1.0-b3
|
* Since: 3.1.0-b3
|
||||||
* Purpose: Add content after the page-header, but before the page-body
|
* Purpose: Add content after the page-header, but before the page-body
|
||||||
|
|
||||||
|
overall_header_stylesheets_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/overall_header.html
|
||||||
|
+ styles/subsilver2/template/overall_header.html
|
||||||
|
* Since: 3.1.0-RC3
|
||||||
|
* Purpose: Add asset calls after stylesheets within the `</head>` tag
|
||||||
|
|
||||||
posting_editor_buttons_after
|
posting_editor_buttons_after
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
@ -734,6 +755,14 @@ simple_header_head_append
|
|||||||
* Since: 3.1.0-b4
|
* Since: 3.1.0-b4
|
||||||
* Purpose: Add asset calls directly before the `</head>` tag
|
* Purpose: Add asset calls directly before the `</head>` tag
|
||||||
|
|
||||||
|
simple_header_stylesheets_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/simple_header.html
|
||||||
|
+ styles/subsilver2/template/simple_header.html
|
||||||
|
* Since: 3.1.0-RC3
|
||||||
|
* Purpose: Add asset calls after stylesheets within the `</head>` tag
|
||||||
|
|
||||||
topiclist_row_prepend
|
topiclist_row_prepend
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
@ -51,6 +51,8 @@
|
|||||||
|
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
|
||||||
|
<!-- EVENT overall_header_stylesheets_after -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body id="phpbb" class="nojs notouch section-{SCRIPT_NAME} {S_CONTENT_DIRECTION} {BODY_CLASS}">
|
<body id="phpbb" class="nojs notouch section-{SCRIPT_NAME} {S_CONTENT_DIRECTION} {BODY_CLASS}">
|
||||||
|
|
||||||
|
@ -28,6 +28,8 @@
|
|||||||
|
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
|
||||||
|
<!-- EVENT simple_header_stylesheets_after -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="phpbb" class="nojs {S_CONTENT_DIRECTION} {BODY_CLASS}">
|
<body id="phpbb" class="nojs {S_CONTENT_DIRECTION} {BODY_CLASS}">
|
||||||
|
@ -135,6 +135,8 @@ function marklist(id, name, state)
|
|||||||
|
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
|
||||||
|
<!-- EVENT overall_header_stylesheets_after -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
||||||
|
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
|
|
||||||
{$STYLESHEETS}
|
{$STYLESHEETS}
|
||||||
|
|
||||||
|
<!-- EVENT simple_header_stylesheets_after -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
<body class="{S_CONTENT_DIRECTION} {BODY_CLASS}">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user