List
Available tags
ItemPublisher:Items.Any
Returns True
if there exist any items with the selected item type and in the selected website/page.
@GetBoolean("ItemPublisher:Items.Any")
ItemPublisher:Items.CanEdit
Returns True
if "Allow editing of items"
is enabled in paragraph settings for the module.
@GetBoolean("ItemPublisher:Items.CanEdit")
ItemPublisher:Items.Count
Returns the number of items on the current page.
@GetInteger("ItemPublisher:Items.Count")
ItemPublisher:Items.Paging.CurrentPage
Returns the number of the current page.
@GetInteger("ItemPublisher:Items.Paging.CurrentPage")
ItemPublisher:Items.Paging.NextPage
Returns the link to the next page (if it exists) in the following form:
/Default.aspx?ID=[PageID]&PID=[ParagraphID]&page=[page number]
@GetString("ItemPublisher:Items.Paging.NextPage")
ItemPublisher:Items.Paging.PagesX.EndsWithLastPage
Returns True
if the current range ends with last page
@GetBoolean("ItemPublisher:Items.Paging.PagesX.EndsWithLastPage")
ItemPublisher:Items.Paging.PagesX.Size
Returns the size of the range (3, 5, 7, etc.).
@GetInteger("ItemPublisher:Items.Paging.PagesX.Size")
ItemPublisher:Items.Paging.PagesX.StartsWithFirstPage
Returns True
if the current range starts with first page.
@GetBoolean("ItemPublisher:Items.Paging.PagesX.StartsWithFirstPage")
ItemPublisher:Items.Paging.PrevPage
Returns the link to the previous page (if it exists) in the following form:
/Default.aspx?ID=[PageID]&PID=[ParagraphID]&page=[page number]
@GetString("ItemPublisher:Items.Paging.PrevPage")
ItemPublisher:Items.Paging.TotalPages
Returns the total number of pages in the list.
@GetInteger("ItemPublisher:Items.Paging.TotalPages")
ItemPublisher:Items.TotalCount
The tag returns the total count of items in the Item publisher list.
@GetInteger("ItemPublisher:Items.TotalCount")
ItemPublisher:ItemType.CanEdit
Returns True
if "Allow editing of items"
is enabled in paragraph settings for the module.
@GetBoolean("ItemPublisher:ItemType.CanEdit")
ItemPublisher:ItemType.Description
Returns the description of the selected item type.
@GetString("ItemPublisher:ItemType.Description")
ItemPublisher:ItemType.Fields.Any
Returns True
if there exist any item fields with the selected item type and in the selected website/page.
@GetBoolean("ItemPublisher:ItemType.Fields.Any")
ItemPublisher:ItemType.Name
Returns the name of the selected item type.
@GetString("ItemPublisher:ItemType.Name")
ItemPublisher:ItemType.SystemName
Returns the system name of the selected item type.
@GetString("ItemPublisher:ItemType.SystemName")
Available loops
ItemPublisher:Items.List
The ItemPublisher:Items.List
loop lets you display various information about the items. Same tags as in Details
@foreach (LoopItem item in GetLoop("ItemPublisher:Items.List")){ <p>@item.GetValue("TagName")</p> }
ItemPublisher:Items.Paging.PagesX
The ItemPublisher:Items.Paging.PagesX
loop lets you display various information about paging for the item publisher list.
@foreach (LoopItem item in GetLoop("ItemPublisher:Items.Paging.PagesX")){ <p>@item.GetValue("TagName")</p> }
ItemPublisher:ItemType.Fields
The ItemPublisher:ItemType.Fields
loop lets you display various information about the item type fields.
@foreach (LoopItem item in GetLoop("ItemPublisher:ItemType.Fields")){ <p>@item.GetValue("TagName")</p> }