Multiple DMSF tabs in Administration->Custom fields fixed

This commit is contained in:
Karel Picman 2013-03-01 14:27:14 +01:00
parent e3801a7cb9
commit c2c2bebdbd

View File

@ -1,3 +1,20 @@
# Copyright (C) 2011 Vit Jons <vit.jonas@gmail.com>
# Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk>
# Copyright (C) 2013 Karel Picman <karel.picman@kontron.com>
# 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.
#
# 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.
#
# 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.
module RedmineDmsf
module Patches
module CustomFieldsHelper
@ -7,9 +24,13 @@ module RedmineDmsf
end
end
def custom_fields_tabs_with_customer_tab
tabs = custom_fields_tabs_without_customer_tab
tabs << {:name => 'DmsfFileRevisionCustomField', :partial => 'custom_fields/index', :label => :DMSF_custom_field}
def custom_fields_tabs_with_customer_tab
cf = {:name => 'DmsfFileRevisionCustomField', :partial => 'custom_fields/index', :label => :dmsf}
unless CustomField::CUSTOM_FIELDS_NAMES.include?(cf[:name])
CustomField::CUSTOM_FIELDS_TABS << cf
CustomField::CUSTOM_FIELDS_NAMES << cf[:name]
end
custom_fields_tabs_without_customer_tab
end
end
end