aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2014-12-06 13:39:20 +0700
committerrxu <rxu@mail.ru>2014-12-06 16:36:33 +0700
commit0a419781c201bcbdc4d63c4bdff57a2cca22758f (patch)
treea1e3ae46c1c77e470c38d1c68d4f7cf4b00d67ba /phpBB
parent70483d60886ad416c3dd40f29e1128e031322e1e (diff)
downloadforums-0a419781c201bcbdc4d63c4bdff57a2cca22758f.tar
forums-0a419781c201bcbdc4d63c4bdff57a2cca22758f.tar.gz
forums-0a419781c201bcbdc4d63c4bdff57a2cca22758f.tar.bz2
forums-0a419781c201bcbdc4d63c4bdff57a2cca22758f.tar.xz
forums-0a419781c201bcbdc4d63c4bdff57a2cca22758f.zip
[ticket/13419] Add the lowermost template event
PHPBB3-13419
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/events.md8
-rw-r--r--phpBB/styles/prosilver/template/overall_footer.html2
-rw-r--r--phpBB/styles/subsilver2/template/overall_footer.html2
3 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md
index 7863814daa..58f38b0af7 100644
--- a/phpBB/docs/events.md
+++ b/phpBB/docs/events.md
@@ -635,6 +635,14 @@ overall_footer_after
* Since: 3.1.0-a1
* Purpose: Add content at the end of the file, directly prior to the `</body>` tag
+overall_footer_body_after
+===
+* Locations:
+ + styles/prosilver/template/overall_footer.html
+ + styles/subsilver2/template/overall_footer.html
+* Since: 3.1.3-RC1
+* Purpose: Add content before the `</body>` tag but after the $SCRIPTS var, i.e. after the js scripts have been loaded
+
overall_footer_breadcrumb_append
===
* Locations:
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html
index 275859ac97..6f35d0e80b 100644
--- a/phpBB/styles/prosilver/template/overall_footer.html
+++ b/phpBB/styles/prosilver/template/overall_footer.html
@@ -48,5 +48,7 @@
<!-- IF S_PLUPLOAD --><!-- INCLUDE plupload.html --><!-- ENDIF -->
{$SCRIPTS}
+<!-- EVENT overall_footer_body_after -->
+
</body>
</html>
diff --git a/phpBB/styles/subsilver2/template/overall_footer.html b/phpBB/styles/subsilver2/template/overall_footer.html
index 42ee17f2ed..176110c58d 100644
--- a/phpBB/styles/subsilver2/template/overall_footer.html
+++ b/phpBB/styles/subsilver2/template/overall_footer.html
@@ -23,5 +23,7 @@
{$SCRIPTS}
+<!-- EVENT overall_footer_body_after -->
+
</body>
</html>