28 lines
994 B
Python
28 lines
994 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# MIT License. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe.utils import strip
|
|
from frappe.website.doctype.website_theme.website_theme import get_active_theme
|
|
|
|
base_template_path = "templates/www/website_script.js"
|
|
|
|
def get_context(context):
|
|
context.javascript = frappe.db.get_single_value('Website Script',
|
|
'javascript') or ""
|
|
|
|
theme = get_active_theme()
|
|
js = strip(theme and theme.js or "")
|
|
if js:
|
|
context.javascript += "\n" + js
|
|
|
|
if not frappe.conf.developer_mode:
|
|
context['google_analytics_id'] = get_setting('google_analytics_id')
|
|
context['google_analytics_anonymize_ip'] = get_setting('google_analytics_anonymize_ip')
|
|
|
|
def get_setting(field_name):
|
|
"""Return value of field_name frok Website Settings or Site Config."""
|
|
website_settings = frappe.db.get_single_value('Website Settings', field_name)
|
|
conf = frappe.conf.get(field_name)
|
|
return website_settings or conf
|