diff options
author | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2019-02-01 00:12:45 -0500 |
---|---|---|
committer | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2019-02-01 09:49:11 -0500 |
commit | 708d2881217a3a66d5ff64a33365e0cb96353962 (patch) | |
tree | c56f2662ecf9ac0ae118a21cab09e95f523b75b5 /view | |
parent | 76582a60b561d037c3f7016dbb3f05fb48429aff (diff) | |
download | volse-hubzilla-708d2881217a3a66d5ff64a33365e0cb96353962.tar.gz volse-hubzilla-708d2881217a3a66d5ff64a33365e0cb96353962.tar.bz2 volse-hubzilla-708d2881217a3a66d5ff64a33365e0cb96353962.zip |
Add filter hooks and the ability to add buttons to the default status editor
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/jot.tpl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 4eae33d13..12509fc59 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -137,8 +137,11 @@ <i id="profile-nocomment" class="fa fa-comments jot-icons"></i> </button> {{/if}} + {{if $custommoretoolsbuttons}} + {{$custommoretoolsbuttons}} + {{/if}} </div> - {{if $writefiles || $weblink || $setloc || $clearloc || $feature_expire || $feature_encrypt || $feature_voting}} + {{if $writefiles || $weblink || $setloc || $clearloc || $feature_expire || $feature_encrypt || $feature_voting || $custommoretoolsdropdown}} <div class="btn-group d-lg-none"> <button type="button" id="more-tools" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <i id="more-tools-icon" class="fa fa-cog jot-icons"></i> @@ -176,6 +179,8 @@ {{if $feature_nocomment}} <a class="dropdown-item" href="#" onclick="toggleNoComment(); return false;"><i id="profile-nocomment-sub" class="fa fa-comments"></i> {{$nocommenttitlesub}}</a> {{/if}} + <hr /> + {{$custommoretoolsdropdown}} </div> </div> {{/if}} @@ -186,6 +191,11 @@ </div> </div> <div id="profile-jot-submit-right" class="btn-group float-right"> + {{foreach $customsubmitright as $csr}} + <button class="btn btn-outline-secondary btn-sm" {{$csr.buttonparams}} title="{{$csr.preview}}"> + {{$csr.buttoncontent}} + </button> + {{/foreach}} {{if $preview}} <button class="btn btn-outline-secondary btn-sm" onclick="preview_post();return false;" title="{{$preview}}"> <i class="fa fa-eye jot-icons" ></i> |