mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #6444 from iMattPro/ticket/17075
[ticket/17075] Add template events to ACP footers after $SCRIPT
This commit is contained in:
commit
11e68e910b
3 changed files with 16 additions and 0 deletions
|
@ -42,5 +42,7 @@
|
||||||
<!-- EVENT acp_overall_footer_after -->
|
<!-- EVENT acp_overall_footer_after -->
|
||||||
{$SCRIPTS}
|
{$SCRIPTS}
|
||||||
|
|
||||||
|
{% EVENT acp_overall_footer_body_after %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -23,5 +23,7 @@
|
||||||
<!-- EVENT acp_simple_footer_after -->
|
<!-- EVENT acp_simple_footer_after -->
|
||||||
{$SCRIPTS}
|
{$SCRIPTS}
|
||||||
|
|
||||||
|
{% EVENT acp_simple_footer_body_after %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -274,6 +274,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_footer_body_after
|
||||||
|
===
|
||||||
|
* Location: adm/style/overall_footer.html
|
||||||
|
* Since: 3.3.10-RC1
|
||||||
|
* Purpose: Add content before the `</body>` tag but after the $SCRIPTS var, i.e. after the js scripts have been loaded
|
||||||
|
|
||||||
acp_overall_header_body_before
|
acp_overall_header_body_before
|
||||||
===
|
===
|
||||||
* Location: adm/style/overall_header.html
|
* Location: adm/style/overall_header.html
|
||||||
|
@ -558,6 +564,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_footer_body_after
|
||||||
|
===
|
||||||
|
* Location: adm/style/simple_footer.html
|
||||||
|
* Since: 3.3.10-RC1
|
||||||
|
* Purpose: Add content before the `</body>` tag but after the $SCRIPTS var, i.e. after the js scripts have been loaded
|
||||||
|
|
||||||
acp_simple_header_body_before
|
acp_simple_header_body_before
|
||||||
===
|
===
|
||||||
* Location: adm/style/simple_header.html
|
* Location: adm/style/simple_header.html
|
||||||
|
|
Loading…
Add table
Reference in a new issue