Global:Extranet.Phone
Version: - globalvalueSummary
Returns the phone number of the user.
Settings
The value is based on the Phone input field for a user.
(User Management > User > User tab > Personal panel > Phone)
Examples
Outputting the template tag
@GetGlobalValue("Global:Extranet.Phone")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.Phone"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetGlobalValue("Global:Extranet.Phone");
}
Outputting the template tag
<!--@Global:Extranet.Phone-->
Check if globalvalue has a value
<!--@If Defined(@Global:Extranet.Phone)-->
Let's output this tag here: <strong><!--@Global:Extranet.Phone--></strong>
<!--@EndIf(@Global:Extranet.Phone)-->