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