Project

General

Profile

Hooks List » History » Version 2

Eric Davis, 2008-08-13 03:15
Added controller and helper hooks documentation. Added information about using the rake task to list the hooks.

1 1 Jean-Philippe Lang
h1. Hooks
2
3 2 Eric Davis
To see the current list of hooks, run @rake redmine:plguins:hook_list@ in the Redmine directory.
4
5 1 Jean-Philippe Lang
h2. Views
6
7
For views hooks, current project is accessible using @:project@ key of context.
8
9
|_. Name|_. Description|_. Context|
10
|@view_layouts_base_html_head@|Appends content to the html head of the base layout||
11 2 Eric Davis
12
h2. Controllers
13
14
|_. Name|_. Description|_. Context|
15
|@:controller_issues_bulk_edit_before_save@|Passes the current issue and the params to the hook before saving.  This can be used to set attributes on the issues.| @:params, :issue@|
16
17
h2. Helpers
18
19
|_. Name|_. Description|_. Context|
20
|@:helper_issues_show_detail_after_setting@|Passes data to the hook to allow it to set the label and value.|@:detail, :label, :value, :old_value@|