mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-18 00:17:25 +00:00
12 lines
436 B
Ruby
12 lines
436 B
Ruby
require 'web/cookies_consent'
|
|
|
|
module FooterLinksHelper
|
|
def cookies_policy_link
|
|
link_to( t( '.footer_data_cookies_policy' ), '', 'cookies-policy-modal' => true, 'cookies-banner' => !Web::CookiesConsent.new(cookies, request.host).exists? && Spree::Config.cookies_consent_banner_toggle)
|
|
end
|
|
|
|
def privacy_policy_link
|
|
link_to( t( '.footer_data_privacy_policy' ), Spree::Config.privacy_policy_url, target: '_blank' )
|
|
end
|
|
end
|