enumerations_controller.rb
85 lines
| 2.4 KiB
| text/x-ruby
|
RubyLexer
|
r6785 | # Redmine - project management software | ||
|
r9453 | # Copyright (C) 2006-2012 Jean-Philippe Lang | ||
|
r330 | # | ||
# 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. | ||||
|
r6785 | # | ||
|
r330 | # This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
|
r6785 | # | ||
|
r330 | # You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
class EnumerationsController < ApplicationController | ||||
|
r3062 | layout 'admin' | ||
|
r6785 | |||
|
r330 | before_filter :require_admin | ||
|
r8069 | before_filter :build_new_enumeration, :only => [:new, :create] | ||
before_filter :find_enumeration, :only => [:edit, :update, :destroy] | ||||
|
r2831 | |||
helper :custom_fields | ||||
|
r6785 | |||
|
r2 | def index | ||
end | ||||
def new | ||||
end | ||||
def create | ||||
|
r8069 | if request.post? && @enumeration.save | ||
|
r12 | flash[:notice] = l(:notice_successful_create) | ||
|
r7853 | redirect_to :action => 'index', :type => @enumeration.type | ||
|
r2 | else | ||
render :action => 'new' | ||||
end | ||||
end | ||||
def edit | ||||
end | ||||
def update | ||||
|
r8069 | if request.put? && @enumeration.update_attributes(params[:enumeration]) | ||
|
r12 | flash[:notice] = l(:notice_successful_update) | ||
|
r7853 | redirect_to :action => 'index', :type => @enumeration.type | ||
|
r2 | else | ||
render :action => 'edit' | ||||
end | ||||
end | ||||
|
r6785 | |||
|
r2 | def destroy | ||
|
r1544 | if !@enumeration.in_use? | ||
# No associated objects | ||||
@enumeration.destroy | ||||
redirect_to :action => 'index' | ||||
|
r5491 | return | ||
|
r1544 | elsif params[:reassign_to_id] | ||
|
r3410 | if reassign_to = @enumeration.class.find_by_id(params[:reassign_to_id]) | ||
|
r1544 | @enumeration.destroy(reassign_to) | ||
redirect_to :action => 'index' | ||||
|
r5491 | return | ||
|
r1544 | end | ||
end | ||||
|
r8069 | @enumerations = @enumeration.class.all - [@enumeration] | ||
end | ||||
private | ||||
def build_new_enumeration | ||||
class_name = params[:enumeration] && params[:enumeration][:type] || params[:type] | ||||
@enumeration = Enumeration.new_subclass_instance(class_name, params[:enumeration]) | ||||
if @enumeration.nil? | ||||
render_404 | ||||
end | ||||
end | ||||
def find_enumeration | ||||
@enumeration = Enumeration.find(params[:id]) | ||||
rescue ActiveRecord::RecordNotFound | ||||
render_404 | ||||
|
r2 | end | ||
end | ||||