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