Module: CartoHelper
- Defined in:
- app/helpers/carto_helper.rb
Instance Method Summary collapse
-
#carto_link(file_link) ⇒ String
Creates a Carto OneClick link, using the configuration link.
-
#carto_provider ⇒ Object
Removes blank space from provider to accomodate Carto OneClick.
Instance Method Details
#carto_link(file_link) ⇒ String
Creates a Carto OneClick link, using the configuration link
8 9 10 11 12 13 14 15 |
# File 'app/helpers/carto_helper.rb', line 8 def carto_link(file_link) params = URI.encode_www_form( file: file_link, provider: carto_provider, logo: Settings.APPLICATION_LOGO_URL ) carto_oneclick_host + "?" + params end |
#carto_provider ⇒ Object
Removes blank space from provider to accomodate Carto OneClick
20 21 22 |
# File 'app/helpers/carto_helper.rb', line 20 def carto_provider application_name.delete(" ") end |