UserManagement:User.Item.Group.Name
Version: - stringSummary
Returns the name of the item field group.
Settings
The value is based on the Group field in the item type settings.
(Management Center - Item types - [Item type] - [Item type group] - Name)
Examples
Outputting the template tag
@GetString("UserManagement:User.Item.Group.Name")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.Item.Group.Name"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.Item.Group.Name");
}
Outputting the template tag
<!--@UserManagement:User.Item.Group.Name-->
Check if string has a value
<!--@If Defined(@UserManagement:User.Item.Group.Name)-->
Let's output this tag here: <strong><!--@UserManagement:User.Item.Group.Name--></strong>
<!--@EndIf(@UserManagement:User.Item.Group.Name)-->