obsolete.ChilliProject/extra/sample_plugin/app/controllers/example_controller.rb

34 lines
770 B
Ruby
Raw Normal View History

#-- copyright
# ChiliProject is a project management system.
2011-05-30 22:52:25 +04:00
#
# Copyright (C) 2010-2011 the ChiliProject Team
2011-05-30 22:52:25 +04:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
2011-05-30 22:52:25 +04:00
#
# See doc/COPYRIGHT.rdoc for more details.
#++
# Sample plugin controller
class ExampleController < ApplicationController
unloadable
2011-05-30 22:52:25 +04:00
layout 'base'
before_filter :find_project, :authorize
menu_item :sample_plugin
2011-05-30 22:52:25 +04:00
def say_hello
@value = Setting.plugin_sample_plugin['sample_setting']
end
def say_goodbye
end
2011-05-30 22:52:25 +04:00
private
2011-05-30 22:52:25 +04:00
def find_project
@project=Project.find(params[:id])
end
end