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("PhoneMobile")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("PhoneMobile"); }

Outputting the template tag

<!--@PhoneMobile-->

Check if string has a value

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