2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-11 19:34:14 +08:00
|
|
|
module CommonHelper
|
2014-01-26 08:42:25 +08:00
|
|
|
def render_google_universal_analytics_code
|
2014-08-18 14:42:48 +08:00
|
|
|
if Rails.env.production? && SiteSetting.ga_universal_tracking_code.present?
|
2014-01-26 08:42:25 +08:00
|
|
|
render partial: "common/google_universal_analytics"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-04 02:20:51 +08:00
|
|
|
def render_google_tag_manager_head_code
|
2016-07-15 01:52:37 +08:00
|
|
|
if Rails.env.production? && SiteSetting.gtm_container_id.present?
|
2018-04-04 02:20:51 +08:00
|
|
|
render partial: "common/google_tag_manager_head"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_google_tag_manager_body_code
|
|
|
|
if Rails.env.production? && SiteSetting.gtm_container_id.present?
|
|
|
|
render partial: "common/google_tag_manager_body"
|
2016-07-15 01:52:37 +08:00
|
|
|
end
|
|
|
|
end
|
2013-03-23 23:02:59 +08:00
|
|
|
end
|