UserManagement:User.UserAddress.Cell

Version: - string  

Summary

Returns the mobile phone number of the user.

Settings

The value is based on the Mobile number input field for a user in Addresses.

(User Management > User > Addresses > Edit user address > Mobile number)

Examples

Outputting the template tag

@GetString("UserManagement:User.UserAddress.Cell")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.UserAddress.Cell"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.UserAddress.Cell"); }

Outputting the template tag

<!--@UserManagement:User.UserAddress.Cell-->

Check if string has a value

<!--@If Defined(@UserManagement:User.UserAddress.Cell)--> Let's output this tag here: <strong><!--@UserManagement:User.UserAddress.Cell--></strong> <!--@EndIf(@UserManagement:User.UserAddress.Cell)-->