Module: QualtricsLinkHelper
- Defined in:
- app/helpers/qualtrics_link_helper.rb
Instance Method Summary collapse
Instance Method Details
#qualtrics_link(participant_id, survey_name, button_name = survey_name) ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'app/helpers/qualtrics_link_helper.rb', line 2 def qualtrics_link participant_id, survey_name, =survey_name html = "<div class='survey_link'><a href='" html << "/qualtrics_surveys?participant_id=" + participant_id.to_s + "&survey_name=" +survey_name.to_s html << "'>" html << html << " </div>" html = html.html_safe end |