move CustomFieldsHelper tabs variable to model constant for common use (#12018)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10554 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
65a045e207
commit
fb4210b6d9
|
@ -20,16 +20,7 @@
|
||||||
module CustomFieldsHelper
|
module CustomFieldsHelper
|
||||||
|
|
||||||
def custom_fields_tabs
|
def custom_fields_tabs
|
||||||
tabs = [{:name => 'IssueCustomField', :partial => 'custom_fields/index', :label => :label_issue_plural},
|
CustomField::CUSTOM_FIELDS_TABS
|
||||||
{:name => 'TimeEntryCustomField', :partial => 'custom_fields/index', :label => :label_spent_time},
|
|
||||||
{:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural},
|
|
||||||
{:name => 'VersionCustomField', :partial => 'custom_fields/index', :label => :label_version_plural},
|
|
||||||
{:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural},
|
|
||||||
{:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural},
|
|
||||||
{:name => 'TimeEntryActivityCustomField', :partial => 'custom_fields/index', :label => TimeEntryActivity::OptionName},
|
|
||||||
{:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', :label => IssuePriority::OptionName},
|
|
||||||
{:name => 'DocumentCategoryCustomField', :partial => 'custom_fields/index', :label => DocumentCategory::OptionName}
|
|
||||||
]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Return custom field html tag corresponding to its format
|
# Return custom field html tag corresponding to its format
|
||||||
|
|
|
@ -30,6 +30,27 @@ class CustomField < ActiveRecord::Base
|
||||||
validate :validate_custom_field
|
validate :validate_custom_field
|
||||||
before_validation :set_searchable
|
before_validation :set_searchable
|
||||||
|
|
||||||
|
CUSTOM_FIELDS_TABS = [
|
||||||
|
{:name => 'IssueCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_issue_plural},
|
||||||
|
{:name => 'TimeEntryCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_spent_time},
|
||||||
|
{:name => 'ProjectCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_project_plural},
|
||||||
|
{:name => 'VersionCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_version_plural},
|
||||||
|
{:name => 'UserCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_user_plural},
|
||||||
|
{:name => 'GroupCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => :label_group_plural},
|
||||||
|
{:name => 'TimeEntryActivityCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => TimeEntryActivity::OptionName},
|
||||||
|
{:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => IssuePriority::OptionName},
|
||||||
|
{:name => 'DocumentCategoryCustomField', :partial => 'custom_fields/index',
|
||||||
|
:label => DocumentCategory::OptionName}
|
||||||
|
]
|
||||||
|
|
||||||
def set_searchable
|
def set_searchable
|
||||||
# make sure these fields are not searchable
|
# make sure these fields are not searchable
|
||||||
self.searchable = false if %w(int float date bool).include?(field_format)
|
self.searchable = false if %w(int float date bool).include?(field_format)
|
||||||
|
|
Loading…
Reference in New Issue