Sha256: cedb621fa80b8b8be02604b95deef8c33bf8411b6edf844486f8c9dc84443615
Contents?: true
Size: 1.03 KB
Versions: 12
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Decidim # A Helper to render the Call To Action button. module CtaButtonHelper # Renders the Call To Action button. Link and text can be configured # per organization. def cta_button button_text = translated_attribute(current_organization.cta_button_text).presence || t("decidim.pages.home.hero.participate") link_to button_text, cta_button_path, class: "hero-cta button expanded large button--sc" end # Finds the CTA button path to reuse it in other places. def cta_button_path if current_organization.cta_button_path.present? current_organization.cta_button_path elsif Decidim::ParticipatoryProcess.where(organization: current_organization).published.any? decidim_participatory_processes.participatory_processes_path elsif current_user decidim.account_path elsif current_organization.sign_up_enabled? decidim.new_user_registration_path else decidim.new_user_session_path end end end end
Version data entries
12 entries across 12 versions & 1 rubygems