UserManagement:User.JobTitle
Version: - stringSummary
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
@GetString("UserManagement:User.JobTitle")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.JobTitle"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.JobTitle");
}
Outputting the template tag
<!--@UserManagement:User.JobTitle-->
Check if string has a value
<!--@If Defined(@UserManagement:User.JobTitle)-->
Let's output this tag here: <strong><!--@UserManagement:User.JobTitle--></strong>
<!--@EndIf(@UserManagement:User.JobTitle)-->