PhonePrivate
Version: - stringSummary
Returns the private phone number of the user.
Settings
The value is based on the Phone (private) input field for a user.
(User Management > User > User tab > Personal panel > Phone (private))
Examples
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)-->
Let's output this tag here: <strong><!--@PhonePrivate--></strong>
<!--@EndIf(@PhonePrivate)-->