UserManagement:User.PhoneMobile

Version: - string  

Summary

Returns the mobile phone number of the user.

Settings

The value is based on the Mobile phone input field for a user.

(User Management > User > User tab > Personal panel > Mobile phone)

Examples

Outputting the template tag

@GetString("UserManagement:User.PhoneMobile")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@UserManagement:User.PhoneMobile-->

Check if string has a value

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