Category:Moderator.Name

Version: - string  

Summary

Returns moderator name.

Settings

The value is related to the user name in Users module.

Examples

Outputting the template tag

@GetString("Category:Moderator.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Category:Moderator.Name"); }

Outputting the template tag

<!--@Category:Moderator.Name-->

Check if string has a value

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