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