Forum:LastActiveThread.Author.Groups
Summary
This Loop contains all user groups the author of last active thread belongs to.
Examples
Basic usage
Notice the use of @item.GetValue to get data from the loop variable.
If you just write @GetValue, the data will be taken from outside the loop.
Similarly, you have to use @item.GetLoop to use loops inside a loop.
<table>
<tr>
@foreach (LoopItem item in GetLoop("Forum:LastActiveThread.Author.Groups") {
<td> @item.GetValue("Relevant.Tag") </td>
}
</tr>
</table>
Check if the loop exists
@if (Loops.Contains("Forum:LastActiveThread.Author.Groups")) {
...
}
Example of usage
The following general example illustrates how to use a loop construct.
<table>
<!--@LoopStart(Forum:LastActiveThread.Author.Groups)-->
<tr>
<td><!--@Loop:Tag--></td>
</tr>
<!--LoopEnd(Forum:LastActiveThread.Author.Groups)-->
</table>
Check if the loop exists
<!--@If LoopDefined(Forum:LastActiveThread.Author.Groups)-->
...
<!--@EndIf(Forum:LastActiveThread.Author.Groups)-->
Available tags
Forum:LastThread.Author.Group.ID
Returns user group ID the author of last active thread belongs to.
RAZOR
@GetInteger("Forum:LastThread.Author.Group.ID")
Forum:LastThread.Author.Group.Name
Returns user group name the author of last active thread belongs to.
RAZOR
@GetString("Forum:LastThread.Author.Group.Name")
Forum:LastThread.Author.Group.ParentID
Returns user group parent ID the author of last active thread belongs to.
RAZOR
@GetInteger("Forum:LastThread.Author.Group.ParentID")