Ported the table header from the Budget plugin hook. #1923

This commit is contained in:
Eric Davis
2009-01-21 11:23:15 -08:00
parent 82e480b77b
commit 256627d2a3
2 changed files with 20 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ require 'redmine'
require 'rate_users_helper_patch'
require 'rate_sort_helper_patch'
require 'rate_project_hook'
Redmine::Plugin.register :redmine_rate do
name 'Rate Plugin'
author 'Eric Davis'

18
lib/rate_project_hook.rb Normal file
View File

@@ -0,0 +1,18 @@
# Hooks to attach to the Redmine Projects.
class RateProjectHook < Redmine::Hook::ViewListener
def protect_against_forgery?
false
end
# Renders an additional table header to the membership setting
#
# Context:
# * :project => Current project
#
def view_projects_settings_members_table_header(context ={ })
return "<th>#{l(:rate_label_rate)} #{l(:rate_label_currency)}</td>"
end
end