Mercurial > hg > soundsoftware-site
annotate extra/sample_plugin/app/controllers/example_controller.rb @ 904:0a8317a50fa0 redmine-1.1
Close obsolete branch redmine-1.1
author | Chris Cannam |
---|---|
date | Fri, 14 Jan 2011 12:53:21 +0000 |
parents | 513646585e45 |
children | 433d4f72a19b |
rev | line source |
---|---|
Chris@0 | 1 # Sample plugin controller |
Chris@0 | 2 class ExampleController < ApplicationController |
Chris@0 | 3 unloadable |
Chris@0 | 4 |
Chris@0 | 5 layout 'base' |
Chris@0 | 6 before_filter :find_project, :authorize |
Chris@0 | 7 menu_item :sample_plugin |
Chris@0 | 8 |
Chris@0 | 9 def say_hello |
Chris@0 | 10 @value = Setting.plugin_sample_plugin['sample_setting'] |
Chris@0 | 11 end |
Chris@0 | 12 |
Chris@0 | 13 def say_goodbye |
Chris@0 | 14 end |
Chris@0 | 15 |
Chris@0 | 16 private |
Chris@0 | 17 def find_project |
Chris@0 | 18 @project=Project.find(params[:id]) |
Chris@0 | 19 end |
Chris@0 | 20 end |