To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / controllers / custom_fields_controller.rb @ 831:7614169e14ed
History | View | Annotate | Download (2.34 KB)
| 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 |
else
|
| 42 |
@trackers = Tracker.find(:all, :order => 'position') |
| 43 |
end
|
| 44 |
end
|
| 45 |
|
| 46 |
def edit |
| 47 |
@custom_field = CustomField.find(params[:id]) |
| 48 |
if request.post? and @custom_field.update_attributes(params[:custom_field]) |
| 49 |
flash[:notice] = l(:notice_successful_update) |
| 50 |
call_hook(:controller_custom_fields_edit_after_save, :params => params, :custom_field => @custom_field) |
| 51 |
redirect_to :action => 'index', :tab => @custom_field.class.name |
| 52 |
else
|
| 53 |
@trackers = Tracker.find(:all, :order => 'position') |
| 54 |
end
|
| 55 |
end
|
| 56 |
|
| 57 |
def destroy |
| 58 |
@custom_field = CustomField.find(params[:id]).destroy |
| 59 |
redirect_to :action => 'index', :tab => @custom_field.class.name |
| 60 |
rescue
|
| 61 |
flash[:error] = l(:error_can_not_delete_custom_field) |
| 62 |
redirect_to :action => 'index' |
| 63 |
end
|
| 64 |
end
|