![Marton Kiss](/assets/img/avatar_default.png)
Add optional GA tracking code variable to settings.php template and add tracking code to groups.openstack.org site. Change-Id: Iddf223cab9ef672178f4e2984cdacf27a8d0f16f
17 lines
360 B
Plaintext
17 lines
360 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Drupal configuration overrides
|
|
*
|
|
*/
|
|
|
|
<% if @conf_cron_key %>
|
|
$conf['cron_key'] = '<%= @conf_cron_key %>';
|
|
<% end %>
|
|
<% if @conf_markdown_directory %>
|
|
$conf['groups_feeds_markdown_directory'] = '<%= @conf_markdown_directory %>';
|
|
<% end %>
|
|
<% if @conf_ga_account %>
|
|
$conf['googleanalytics_account'] = '<%= @conf_ga_account %>';
|
|
<% end %> |