diff options
author | rxu <rxu@mail.ru> | 2018-12-20 01:21:07 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2019-03-31 12:46:45 +0700 |
commit | f07ce4f7b5895b7d3ce272dcc99528468f3dcefb (patch) | |
tree | cffd8c80deba0016ca4f1b2603676dc9f8f3b015 /phpBB/styles/prosilver | |
parent | f9c251c7af0b3cb9766f12a852cf6c78c73953bc (diff) | |
download | forums-f07ce4f7b5895b7d3ce272dcc99528468f3dcefb.tar forums-f07ce4f7b5895b7d3ce272dcc99528468f3dcefb.tar.gz forums-f07ce4f7b5895b7d3ce272dcc99528468f3dcefb.tar.bz2 forums-f07ce4f7b5895b7d3ce272dcc99528468f3dcefb.tar.xz forums-f07ce4f7b5895b7d3ce272dcc99528468f3dcefb.zip |
[ticket/15915] Add template events to posting_attach_body.html
PHPBB3-15915
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_attach_body.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html index 444713d6e0..72935eb7e9 100644 --- a/phpBB/styles/prosilver/template/posting_attach_body.html +++ b/phpBB/styles/prosilver/template/posting_attach_body.html @@ -21,6 +21,7 @@ <input type="button" class="button2" value="{L_PLUPLOAD_ADD_FILES}" id="add_files" /> </div> + <!-- EVENT posting_attach_body_file_list_before --> <div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF --> file-list-container" id="file-list-container"> <div class="inner"> <table class="table1 zebra-list fixed-width-table"> @@ -55,7 +56,9 @@ <span class="file-status"></span> </td> </tr> + <!-- EVENT posting_attach_body_attach_row_before --> <!-- BEGIN attach_row --> + <!-- EVENT posting_attach_body_attach_row_prepend --> <tr class="attach-row" data-attach-id="{attach_row.ATTACH_ID}"> <td class="attach-name"> <span class="file-name ellipsis-text"><a href="{attach_row.U_VIEW_ATTACHMENT}">{attach_row.FILENAME}</a></span> @@ -78,10 +81,13 @@ <span class="file-status file-uploaded"></span> </td> </tr> + <!-- EVENT posting_attach_body_attach_row_append --> <!-- END attach_row --> + <!-- EVENT posting_attach_body_attach_row_after --> </tbody> </table> </div> </div> + <!-- EVENT posting_attach_body_file_list_after --> </div> </div> |