##// END OF EJS Templates
Added hooks to issue_edit, issue_bulk_edit, and issue_show. #1147
Eric Davis -
r1678:00659ab8c5c1
parent child
Show More
@@ -48,4 +48,8
48 48 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
49 49 <% end %>
50 50
51 <% if Redmine::Plugin::Hook.hook_registered?(:issue_edit) %>
52 <%= Redmine::Plugin::Hook.call_hook(:issue_edit, {:project => @project, :issue => @issue, :form => f }) %>
53 <% end %>
54
51 55 <%= wikitoolbar_for 'issue_description' %>
@@ -38,6 +38,9
38 38 <label><%= l(:field_done_ratio) %>:
39 39 <%= select_tag 'done_ratio', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></label>
40 40 </p>
41 <% if Redmine::Plugin::Hook.hook_registered?(:issue_bulk_edit) %>
42 <%= Redmine::Plugin::Hook.call_hook(:issue_bulk_edit, {:project => @project, :issue => @issues }) %>
43 <% end %>
41 44 </fieldset>
42 45
43 46 <fieldset><legend><%= l(:field_notes) %></legend>
@@ -53,6 +53,10
53 53 <%end
54 54 end %>
55 55 </tr>
56 <% if Redmine::Plugin::Hook.hook_registered?(:issue_show) %>
57 <%= Redmine::Plugin::Hook.call_hook(:issue_show, {:project => @project, :issue => @issue}) %>
58 <% end %>
59
56 60 </table>
57 61 <hr />
58 62
General Comments 0
You need to be logged in to leave comments. Login now