Mercurial > hg > soundsoftware-site
comparison app/controllers/custom_fields_controller.rb @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children | cbce1fd3b1b7 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2009 Jean-Philippe Lang | |
3 # | |
4 # This program is free software; you can redistribute it and/or | |
5 # modify it under the terms of the GNU General Public License | |
6 # as published by the Free Software Foundation; either version 2 | |
7 # of the License, or (at your option) any later version. | |
8 # | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 # | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 | |
18 class CustomFieldsController < ApplicationController | |
19 layout 'admin' | |
20 | |
21 before_filter :require_admin | |
22 | |
23 def index | |
24 @custom_fields_by_type = CustomField.find(:all).group_by {|f| f.class.name } | |
25 @tab = params[:tab] || 'IssueCustomField' | |
26 end | |
27 | |
28 def new | |
29 @custom_field = begin | |
30 if params[:type].to_s.match(/.+CustomField$/) | |
31 params[:type].to_s.constantize.new(params[:custom_field]) | |
32 end | |
33 rescue | |
34 end | |
35 (redirect_to(:action => 'index'); return) unless @custom_field.is_a?(CustomField) | |
36 | |
37 if request.post? and @custom_field.save | |
38 flash[:notice] = l(:notice_successful_create) | |
39 call_hook(:controller_custom_fields_new_after_save, :params => params, :custom_field => @custom_field) | |
40 redirect_to :action => 'index', :tab => @custom_field.class.name | |
41 end | |
42 @trackers = Tracker.find(:all, :order => 'position') | |
43 end | |
44 | |
45 def edit | |
46 @custom_field = CustomField.find(params[:id]) | |
47 if request.post? and @custom_field.update_attributes(params[:custom_field]) | |
48 flash[:notice] = l(:notice_successful_update) | |
49 call_hook(:controller_custom_fields_edit_after_save, :params => params, :custom_field => @custom_field) | |
50 redirect_to :action => 'index', :tab => @custom_field.class.name | |
51 end | |
52 @trackers = Tracker.find(:all, :order => 'position') | |
53 end | |
54 | |
55 def destroy | |
56 @custom_field = CustomField.find(params[:id]).destroy | |
57 redirect_to :action => 'index', :tab => @custom_field.class.name | |
58 rescue | |
59 flash[:error] = l(:error_can_not_delete_custom_field) | |
60 redirect_to :action => 'index' | |
61 end | |
62 end |