{{ calendar_entry }}

calendar_entry Properties

FieldTypeDescription
object_typestring"calendar_entry"
is_validTrue|FalseTrue if this references a calendar_entry or false if the calendar_entry is null
guidguidThe unique identifier for this calendar_entry
image_guidtext_field
imageimage
descriptionhtml_field
calendar_guidtext_field
calendarcalendar
parent_calendar_entry_guidtext_field
calendar_entrycalendar_entry
timezonetimezone_field
start_datedatetime_field
all_dayboolean
end_datedatetime_field
locationtext_field
linkurl_field
nametext_fieldThe entity name. This field is primarily intended for internal use by website administrators to identify objects.
titletext_field
linked_titlehtmlA link to the calendar_entry if it has a URL, or the escaped title if not.
folder_guidtext_field
folderfolder
has_urlboolean
site_domain_guidtext_field
ssl_modetext_field
include_in_searchboolean
urltext_field
template_guidtext_field
templatetemplate
canonical_urlurl_field
browser_titletext_field
meta_descriptiontextarea_field
meta_robotstextarea_field
keywordstextarea_field
full_urlstringThe full URL of the page - including the scheme ("http://", "https://" or just "//"), the domain name, and the path.
visitedtrue/falseWhether or not the user has visited the calendar_entry before in their current session. Note that this will always be false if the user has not allowed session permission (see the Permissions and Personalization documentation).
customvariesEach calendar_entry includes all of the custom properties defined by the template.
tagstagsThe list of tags associated with this calendar_entry.
authorsauthorsThe list of authors associated with this calendar_entry.
valuestringSynonymn for guid
outputhtmlThe default output that the calendar_entry produces when output directly to the template.
output_in_listhtmlThe default output that the calendar_entry produces when output directly to the template as part of a list.

calendar_entries Summary

Contains multiple calendar_entries.

calendar_entries Properties

FieldTypeDescription
object_typestring"calendar_entries"
is_validtrue/falsetrue if this contains at least one calendar_entry
prependedlist of calendar_entriescalendar_entries that will be listed at the beginning of the items list
fetchedlist of calendar_entriesThe primary list of calendar_entries to be included in the items list
appendedlist of calendar_entriescalendar_entries that will be listed at the end of the items list
appended_uniquelist of calendar_entriescalendar_entries that will be listed at the end of the items list, excluding any calendar_entries that are already included in either the prepended or fetched lists
itemslist of calendar_entriesThe full list of calendar_entries in the proper order and uniqueness, including prepended, fetched, and appended calendar_entries
sizenumberThe total number of items in the list of items, including prepended, fetched, and appended calendar_entries
limitnumberThe maximum number of calendar_entries that could have been fetched dynamically from the database
startnumberThe 1-based index of the first calendar_entry that was (or would have been) dynamically fetched from the database
pagenumberThe 1-based index of the first "page" of calendar_entries that could have been fetched dynamically from the database - as determined by the start and limit properties
total_countnumberThe total number of calendar_entries in the database that matched the provided filter parameters when fetching the list of fetched calendar_entries
total_pagesnumberThe total number of "pages" of results that matched the provided filter parameters when fetching the list of fetched calendar_entries - as determined by the total_count and limit properties
outputhtmlThe default output that the calendar_entries will produce when it is output directly to the template - using the "output_in_list" property of each calendar_entry in the items list

Methods

{% calendar_entry %}

Fetch a single calendar_entry.

{% calendar_entry
[var|set|assign] new_variable_name
Specify a variable name in order to save the calendar_entry to a variable. If not specified the calendar_entry will be output to the template instead. The variable will be saved using the "var" behavior unless "set" or "assign" are specified.
output_to_template
If included, the calendar_entry will be output directly to the template.
=
calendar_entry|guid|string
%}

{% calendar_entries %}

Fetch a list of calendar_entries.

{% calendar_entries
[var|set|assign] new_variable_name
Specify a variable name in order to save the results to a variable. If not specified the results will be output to the template instead. The variable will be saved using the "var" behavior unless "set" or "assign" are specified.
output_to_template
If included, the results will be output directly to the template.
=
prepend:calendar_entry|calendar_entries|guid|string
Prepend the specified calendar_entries before the fetched results. All prepended input will be returned in the same order that it is input.
append:calendar_entry|calendar_entries|guid|string
Append the specified calendar_entries after the fetched results. All appended input will be returned in the same order that it is input.
exclude:calendar_entry|calendar_entries|guid|string
Prevent the specified calendar_entries from being included in the fetched results. Has no affect on prepended and appended calendar_entries
exclude_prepended:true
Specifically exclude all prepended calendar_entries from the fetched results. If "unique:true" is specified this is the default behavior, although you may also specify "exclude_prepended:false" to allow any prepended items to be fetched along with other results anyway.
exclude_appended:true
Specifically exclude all appended calendar_entries from the fetched results. This is false by default - even if "unique:true" is specified - so that results are returned in the proper order.
unique:true
If set to true, each of the resulting lists (prepended, fetched, appended, and items) will be unique, although there may be duplicates between the prepended, fetched, and appended lists. The "items" list will include objects in the order in which they appear - with prepended items first, then fetched items, then appended items.
max_size:25
If specified, then the "items" list will only include up to the specified number of calendar_entries. The "limit" may be automatically lowered to only fetch the maximum number of calendar_entries that will be included in "items" following prepended items. Note that this may also impact both the "page and "total_pages" values. In order to use pagination with a list loaded using "max_size" use "start" instead of "page" and "limit".
filter:string
Only return calendar entries that match the given string filter
has_url:boolean
Filter results to only return calendar entries for which has_url exactly matches the specified value.
calendar:calendar|calendars|guid|string
Only return calendar entries with one of these calendars
start_date:datetime
Filter results to return calendar entries starting on or after the specified value.
end_date:datetime
Filter results to return calendar entries ending on or before the specified value.
template:template|templates|guid|string
Only return calendar entries with one of these templates
include_in_search:boolean
Filter results to only return calendar entries for which include_in_search exactly matches the specified value.
site_domain_guid:guid
Filter results to only return calendar entries for which site_domain_guid exactly matches the specified value.
ssl_mode:string
Filter results to only return calendar entries for which ssl_mode exactly matches the specified value.
tag:tag|tags|guid|string
Only return calendar entries with one of these tags
author:author|authors|guid|string
Only return calendar entries with one of these authors
folder:folder|folders|guid|string
Only return calendar entries with one of these folders
date_created_start:datetime
Filter results to return calendar entries for which date_created is greater than or equal to date_created_start.
date_created_end:datetime
Filter results to return calendar entries for which date_created is less than or equal to date_created_end.
start:1
Set the 1-based index of the first calendar_entry to fetch.
page:1
Automatically calculate the first calendar_entry to fetch based on both of the "limit" and the 1-based "page" value. Ignored if "start" is set.
limit:25
Defines the maximum number of calendar_entries to be fetched. If not included, this will default to 10. Note that if "max_size" is specified then "limit" may be automatically lowered even if specified.
sort_by:"date_created"
Specify which field to sort the fetched results by. Has no affect on prepended or appended calendar_entries.
By default results will be sorted by relevance if there is a filter string and date_created (the date the item was first published) desc (newest first) if not.
Other Options include:
  • StartDate
  • Name
  • Title
  • URL
  • BrowserTitle
  • relevance (based on which field matches the given filter and where in the field the match is found. When sorting by relevance sort_direction is irrelevant)
  • date_created (Equivalent to the date you first published this item. Unpublishing and republishing the item resets date_created to the current date)
  • random (By default using random sorting prevents fast caching of the page. Setting "cache_random:true" overrides this behavior and allows the page to be fast-cached anyway)
sort_direction:"desc"
Specify whether the fetched results should be sorted in asc (ascending) or desc (descending) order.
%}

If you do not include any filters or inputs other than prepended items, appended items, or max_size, then no additional items will be fetched. If you wish to fetch all items you must include at least one additional input (ie: "start:1")