Returns the private phone number of the user.
The value is based on the Phone (private) input field for a user.
(User Management > User > User tab > Personal panel > Phone (private))
Outputting the template tag
@GetString("PhonePrivate")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("PhonePrivate"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("PhonePrivate");
}
Outputting the template tag
<!--@PhonePrivate-->
Check if string has a value
<!--@If Defined(@PhonePrivate)-->