Global:Page.Editor.Username

Version: - globalvalue  

Summary

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

Settings

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

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

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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