ePay.cms
Version: - stringSummary
Returns current CMSs name the shop deployed on.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.cms")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.cms"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.cms");
}
Outputting the template tag
<!--@ePay.cms-->
Check if string has a value
<!--@If Defined(@ePay.cms)-->
Let's output this tag here: <strong><!--@ePay.cms--></strong>
<!--@EndIf(@ePay.cms)-->