Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-20 14:46:10 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-20 14:46:10 +0300
commiteb057209b072e9557f41c6f062832f9b37f62fc8 (patch)
tree363ded628a447c6c24cf1a98d007571476378cc9 /app/helpers
parent55fc58bda4a5592f2f8deaecec9526fbe4eecd6f (diff)
parentbdae9bbebdb8d83fa21024b79aeb703268747f58 (diff)
Merge pull request #9563 from Telekom-PD/feature/control-import-options
Feature/control import options
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/application_settings_helper.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/helpers/application_settings_helper.rb b/app/helpers/application_settings_helper.rb
index 61d14383945..7d6b58ee21a 100644
--- a/app/helpers/application_settings_helper.rb
+++ b/app/helpers/application_settings_helper.rb
@@ -39,4 +39,21 @@ module ApplicationSettingsHelper
end
end
end
+
+ # Return a group of checkboxes that use Bootstrap's button plugin for a
+ # toggle button effect.
+ def import_sources_checkboxes(help_block_id)
+ Gitlab::ImportSources.options.map do |name, source|
+ checked = current_application_settings.import_sources.include?(source)
+ css_class = 'btn'
+ css_class += ' active' if checked
+ checkbox_name = 'application_setting[import_sources][]'
+
+ label_tag(checkbox_name, class: css_class) do
+ check_box_tag(checkbox_name, source, checked,
+ autocomplete: 'off',
+ 'aria-describedby' => help_block_id) + name
+ end
+ end
+ end
end