QuickPayPaymentWindow.google_analytics_client_id

Version: - string  

Summary

Returns current text of Google analytics client id field in the payment gateway settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("QuickPayPaymentWindow.google_analytics_client_id")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.google_analytics_client_id"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("QuickPayPaymentWindow.google_analytics_client_id"); }

Outputting the template tag

<!--@QuickPayPaymentWindow.google_analytics_client_id-->

Check if string has a value

<!--@If Defined(@QuickPayPaymentWindow.google_analytics_client_id)--> Let's output this tag here: <strong><!--@QuickPayPaymentWindow.google_analytics_client_id--></strong> <!--@EndIf(@QuickPayPaymentWindow.google_analytics_client_id)-->