Global:Page.Editor.Email

Version: - globalvalue  

Summary

Returns the name of the last editor of the current page.

Settings

The value is based on the Email input field in the User details section for the user.

(Users tab > Group/User > User tab > User info panel > Email)

Examples

Outputting the template tag

@GetGlobalValue("Global:Page.Editor.Email")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Page.Editor.Email"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Page.Editor.Email"); }

Outputting the template tag

<!--@Global:Page.Editor.Email-->

Check if globalvalue has a value

<!--@If Defined(@Global:Page.Editor.Email)--> Let's output this tag here: <strong><!--@Global:Page.Editor.Email--></strong> <!--@EndIf(@Global:Page.Editor.Email)-->