mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12301] Template Event overall_header_body_before
add template event overall_header_body_before PHPBB3-12301
This commit is contained in:
parent
2e6911b7e7
commit
fb25917fa9
7 changed files with 39 additions and 0 deletions
|
@ -112,6 +112,8 @@ function popup(url, width, height, name)
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION} nojs">
|
<body class="{S_CONTENT_DIRECTION} nojs">
|
||||||
|
|
||||||
|
<!-- EVENT acp_overall_header_body_before -->
|
||||||
|
|
||||||
<div id="wrap">
|
<div id="wrap">
|
||||||
<div id="page-header">
|
<div id="page-header">
|
||||||
<h1>{L_ADMIN_PANEL}</h1>
|
<h1>{L_ADMIN_PANEL}</h1>
|
||||||
|
|
|
@ -106,4 +106,6 @@ function find_username(url)
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION}">
|
<body class="{S_CONTENT_DIRECTION}">
|
||||||
|
|
||||||
|
<!-- EVENT acp_simple_header_body_before -->
|
||||||
|
|
||||||
<div id="page-body" class="simple-page-body">
|
<div id="page-body" class="simple-page-body">
|
||||||
|
|
|
@ -40,6 +40,12 @@ acp_overall_footer_after
|
||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add content below the footer in the ACP
|
* Purpose: Add content below the footer in the ACP
|
||||||
|
|
||||||
|
acp_overall_header_body_before
|
||||||
|
===
|
||||||
|
* Location: adm/style/overall_header.html
|
||||||
|
* Since: 3.1.0-b2
|
||||||
|
* Purpose: Add content to the header body
|
||||||
|
|
||||||
acp_overall_header_head_append
|
acp_overall_header_head_append
|
||||||
===
|
===
|
||||||
* Location: adm/style/overall_header.html
|
* Location: adm/style/overall_header.html
|
||||||
|
@ -52,6 +58,12 @@ acp_simple_footer_after
|
||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add content below the simple footer in the ACP
|
* Purpose: Add content below the simple footer in the ACP
|
||||||
|
|
||||||
|
acp_simple_header_body_before
|
||||||
|
===
|
||||||
|
* Location: adm/style/simple_header.html
|
||||||
|
* Since: 3.1.0-b2
|
||||||
|
* Purpose: Add content to the header body
|
||||||
|
|
||||||
acp_simple_header_head_append
|
acp_simple_header_head_append
|
||||||
===
|
===
|
||||||
* Location: adm/style/overall_header.html
|
* Location: adm/style/overall_header.html
|
||||||
|
@ -223,6 +235,14 @@ overall_footer_copyright_prepend
|
||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add content before the copyright line
|
* Purpose: Add content before the copyright line
|
||||||
|
|
||||||
|
overall_header_body_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/overall_header.html
|
||||||
|
+ styles/subsilver2/template/overall_header.html
|
||||||
|
* Since: 3.1.0-b2
|
||||||
|
* Purpose: Add content to the header body
|
||||||
|
|
||||||
overall_header_breadcrumb_append
|
overall_header_breadcrumb_append
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
@ -342,6 +362,14 @@ simple_footer_after
|
||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add content directly prior to the `</body>` tag of the simple footer
|
* Purpose: Add content directly prior to the `</body>` tag of the simple footer
|
||||||
|
|
||||||
|
simple_header_body_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/simple_header.html
|
||||||
|
+ styles/subsilver2/template/simple_header.html
|
||||||
|
* Since: 3.1.0-b2
|
||||||
|
* Purpose: Add content to the header body
|
||||||
|
|
||||||
topiclist_row_prepend
|
topiclist_row_prepend
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
|
|
@ -50,6 +50,8 @@
|
||||||
</head>
|
</head>
|
||||||
<body id="phpbb" class="nojs section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
|
<body id="phpbb" class="nojs section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
|
||||||
|
|
||||||
|
<!-- EVENT overall_header_body_before -->
|
||||||
|
|
||||||
<div id="wrap">
|
<div id="wrap">
|
||||||
<a id="top" accesskey="t"></a>
|
<a id="top" accesskey="t"></a>
|
||||||
<div id="page-header">
|
<div id="page-header">
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
|
|
||||||
<body id="phpbb" class="nojs {S_CONTENT_DIRECTION}">
|
<body id="phpbb" class="nojs {S_CONTENT_DIRECTION}">
|
||||||
|
|
||||||
|
<!-- EVENT simple_header_body_before -->
|
||||||
|
|
||||||
<div id="simple-wrap">
|
<div id="simple-wrap">
|
||||||
<a id="top" accesskey="t"></a>
|
<a id="top" accesskey="t"></a>
|
||||||
<div id="page-body">
|
<div id="page-body">
|
||||||
|
|
|
@ -134,6 +134,8 @@ function marklist(id, name, state)
|
||||||
</head>
|
</head>
|
||||||
<body class="{S_CONTENT_DIRECTION}">
|
<body class="{S_CONTENT_DIRECTION}">
|
||||||
|
|
||||||
|
<!-- EVENT overall_header_body_before -->
|
||||||
|
|
||||||
<a name="top"></a>
|
<a name="top"></a>
|
||||||
|
|
||||||
<div id="wrapheader">
|
<div id="wrapheader">
|
||||||
|
|
|
@ -12,5 +12,6 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{S_CONTENT_DIRECTION}">
|
<body class="{S_CONTENT_DIRECTION}">
|
||||||
|
<!-- EVENT simple_header_body_before -->
|
||||||
<a name="top"></a>
|
<a name="top"></a>
|
||||||
<div id="wrapcentre">
|
<div id="wrapcentre">
|
||||||
|
|
Loading…
Add table
Reference in a new issue