This is the multi-page printable view of this section. Click here to print.

Return to the regular view of this page.

Content Types

Welcome to the YMCA Website Services Content Types documentation.

In terms of YMCA Website Services, content types are “bundles” of a “node” entity within the Drupal Framework. For more low-level documentation, refer to drupal.org.

YMCA Website Services ships with a set of content types to simplify site usage. While the number of content types isn’t restricted and developers can add more, the goal is to ensure that the shipped list of content types is covered by the YMCA Website Services upgrade path.

Understanding Content Types

  • Content Entity: A content entity is an item of content data like text, images, or files. Content entities are grouped into entity types, which are further divided into entity sub-types to allow for variations in how the entities are used and displayed.
  • Fields: Data within content entities is stored in individual fields. Each field holds a specific data type (formatted text, plain text, images, etc.) Fields can be single or multiple-valued.
  • Reference Field: A reference field stores a relationship between one entity and one or more other entities.
  • Formatter: A formatter determines how a field is displayed.
  • Widget: A widget determines how a field is edited.

Managing Content Structure

Several core modules are used to manage content structure:

  • Node, Comment, Content Block, Custom Menu Links, User, File, Image, Media, Taxonomy, and Contact modules: Provide content entity types.
  • Field UI module: Provides a user interface for managing fields and their display on entities.
  • Layout Builder module: Provides a user interface for configuring the display of entities.
  • Filter, Responsive Image, and Path modules: Provide settings and display options for entities and fields.

1 - Activity

The Activity content type is used for adding Activities to the site. Activities are typically associated with Programs and Classes.

Fields

NameMachine nameRequiredDescription
Titledrupal's defaultYesTitle of the activity item. This is the standard Drupal title field.
Program Subcategoryfield_activity_categoryYesA reference field for selecting the program subcategory to which the activity belongs. This field connects the Activity to a specific subcategory within the broader program structure.
Content AreaField groupA field group to organize the main content of the Activity.
Descriptionfield_activity_descriptionNoTextarea for the description/body of the activity. This field uses a WYSIWYG editor (like CKEditor) for rich text formatting, but does not support a summary field.

URL pattern

This content type uses the following URL pattern:

/programs/[node:field_activity_category:entity:field_category_program:entity:title]/[node:field_activity_category:entity:title]/[node:title]

Explanation:

  • /programs/: Indicates that this is part of the Programs section of the site.
  • [node:field_activity_category:entity:field_category_program:entity:title]: This part of the URL is dynamically generated from the title of the Program to which the activity subcategory is associated.
  • [node:field_activity_category:entity:title]: This is dynamically generated from the title of the Activity Category.
  • [node:title]: This part is dynamically generated from the title of the Activity node itself.

2 - Alert

The Alert content type is used for displaying timely information in a banner across the site. Unlike most content types, you don’t use Alert to create pages. Instead, Alerts display as a rendered entity, as a section of content on other pages, either just below the header or above the footer.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the alert, which will display as the headline.
Background colorfield_alert_colorYesReference field for choosing a term from the “Color” vocabulary.
Text colorfield_alert_text_colorYesReference field for choosing a term from the “Color” vocabulary. For accessibility, stick to using either black or white.
Icon colorfield_alert_icon_colorNoReference field for choosing a term from the “Color” vocabulary. Leave empty to hide the icon.
Placementfield_alert_placeYesSelect list field (singular) for choosing placement:
  • Header
  • Footer
Descriptionfield_alert_descriptionYesTextarea for the main body of the alert with WYSIWYG (What You See Is What You Get) editor, without summary. Sentences should be short and minimally styled in this section.
Linkfield_alert_linkNoInternal or external link. Adds a button with a call to action to the alert on the right. The button color defaults to black.
Referencefield_alert_belongsNoEntity reference with autocomplete to any node. Reference to a node (branch, camp, landing page, etc.) where the alert will be displayed.

URL pattern

Content type uses the following pattern: /alert/[node:title].

3 - Article

The Article content type is used for creating blog posts, news items, and press releases on the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the article item. This field utilizes the core text field type. See TextItem.php for more information.
Sub-titlefield_article_subtitleNoSub-title of the article item.
Locationsfield_article_locationYesReference field to branch and camp nodes. Allows multiple values.
Categoryfield_article_categoryNoReference field for choosing terms from the “Blog Category” vocabulary. Allows multiple values.
Meta Tagsfield_meta_tagsNoA meta tags field that allows providing structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. This utilizes the Metatag module.
Typefield_article_typeYesSelect list field with the following options for choosing the article type:
- News Item (default)
- Blog Post
- Press Release
Imagefield_article_imageNoImage field for the article item. Entity reference to a Media bundle.
BodybodyNoText area for the main content of the article. This field uses a WYSIWYG editor and does not include a summary field.
Contentfield_contentNoFilter list of available Layout Builder components. This field enables the arrangement of content using configurable layouts.
Related Contentfield_article_relatedNoReference field for selecting related Article nodes. Allows multiple values.

URL patterns

The Article content type uses the following URL patterns:

  • /blog/[node:title]
  • /news/[node:title]
  • /press-release/[node:title]

4 - Blog

The Blog Post content type is used for adding blog posts to the site.

Fields

NameMachine nameRequiredDescription
TitleDrupal’s defaultYesTitle of the blog item.
Locationsfield_blog_locationYesReference field to branch and camp nodes. Allows multiple values, enabling association with multiple locations.
Categoryfield_blog_categoryNoReference field for choosing terms from the “Blog Category” vocabulary. Allows multiple values, categorizing blogs under several topics.
Meta Tagsfield_meta_tagsNoAllows providing structured metadata and Open Graph meta tags for social networking sites like Facebook, Pinterest, and LinkedIn, enhancing SEO and sharing.
StylesField group
Stylefield_blog_styleYesSelect list field with multiple options for choosing a style:
- Story Card
- Photo Card
- News Card (default)
- Color Card
Background colorfield_blog_colorNoBackground color for the teaser, used when the “Color Card” style is selected.
Text colorfield_blog_text_colorNoText color for the teaser, used when the “Color Card” style is selected.
Content AreaField group
Imagefield_blog_imageNoImage field for the Blog item. Entity reference to a Media bundle, allowing selection of pre-uploaded images.
Descriptionfield_blog_descriptionNoTextarea for the description/body with WYSIWYG editing capabilities and no summary field.
Contentfield_contentNoA Paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types.
Sidebar AreaField group
Related contentfield_blog_relatedNoReference field for choosing related Blog nodes. Allows multiple values for cross-linking content.
Contentfield_sidebar_contentNoA Paragraph embed field that allows adding various flexible content modules to the sidebar, from a predefined list of paragraph types.

URL pattern

This content type uses the following URL pattern:

/blog/[node:title]

5 - Branch

The Branch content type is used for adding and managing branch locations on the site. Each branch can have detailed information, including address, contact details, hours of operation, and associated content.

Fields

NameMachine nameRequiredDescription
TitleDrupal’s defaultYesTitle of the branch item. This is the main identifier for the branch.
Neighborhoodfield_location_areaNoA taxonomy reference field using the “Area” vocabulary. This allows you to categorize branches by geographical area or neighborhood.
Coming Soonfield_location_stateNoA checkbox field to indicate if the branch is still in development or not yet open to the public.
Temporary URLfield_location_temp_urlNoA link field to provide a temporary page URL (e.g., a blog post or announcement) if the branch is coming soon and doesn’t have a permanent page yet.
Meta Tagsfield_meta_tagsNoA meta tags field allows you to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. This helps with SEO and social sharing.
ContactField group
Addressfield_location_addressYesAn address field that allows you to add detailed location information. This field stores:
  • Address
  • City
  • State
  • Zip Code
Branch Coordinatesfield_location_coordinatesNoInput for providing the latitude and longitude information.
Phonefield_location_phoneYesInput for providing the branch’s phone number.
Faxfield_location_faxNoInput for providing the branch’s fax number (if applicable).
Emailfield_location_emailNoInput for providing the branch’s email address.
Directionsfield_location_directionsNoA link field for adding a directions link (e.g., to a Google Maps page or other online mapping service).
Branch HoursField group
Branch Hoursfield_branch_hoursParagraphA paragraph field to indicate the branch’s hours of operation. This allows for flexible scheduling, including different hours for different days.
Day of the weekfield_branch_hours_dayNoA select list with the following values:
  • sunday|Sunday
  • monday|Monday
  • tuesday|Tuesday
  • wednesday|Wednesday
  • thursday|Thursday
  • friday|Friday
  • saturday|Saturday
Start/End Timefield_branch_hours_timeNoA text field with a description “e.g. 9am - 5pm, closed.” This field stores the opening and closing times for a specific day.
Header AreaField group
Contentfield_header_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This allows you to customize the header area of the branch page.
Content AreaField group
Contentfield_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is the main content area of the branch page.
Bottom AreaField group
Contentfield_bottom_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This allows you to add content to the bottom area of the branch page.

URL pattern

The Branch content type uses the following URL pattern:

/locations/[node:title]

6 - Camp

The Camp content type is used for adding camp information to the site.

Fields

NameMachine nameRequiredDescription
TitleDrupal’s defaultYesTitle of the camp item.
Menu linksfield_camp_menu_linksYesLink field with multiple values, that should have the Title and Link field. Based on it, we will complete the Camp Menu.
Meta Tagsfield_meta_tagsNoA meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites.
ContactField group
Addressfield_location_addressYesAn address field that will provide the ability to add details about the locations. Details to be completed:
- Address
- City
- State
- Zip Code
Camp Coordinatesfield_location_coordinatesNoInput for providing the latitude and longitude information.
Phonefield_location_phoneYesInput for providing the phone information.
Faxfield_location_faxNoInput for providing the fax information.
Emailfield_location_emailNoInput for providing the email information.
Directionsfield_location_directionsNoA link field for adding the directions link.
Header AreaField group
Contentfield_header_contentNoA paragraph embed field that will allow us to add various flexible content modules from the predefined list of paragraph types.
Content AreaField group
Contentfield_contentNoA paragraph embed field that will allow us to add various flexible content modules from the predefined list of paragraph types.
Bottom AreaField group
Contentfield_bottom_contentNoA paragraph embed field that will allow us to add various flexible content modules from the predefined list of paragraph types.

URL pattern

This content type uses the following URL pattern:

/camps/[node:title]

7 - Class

The Class content type is used for adding Classes to the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the class item.
Activityfield_class_activityNoA reference field for selecting the activity the class belongs to. This field references a taxonomy term from the “Activity” vocabulary.
Meta Tagsfield_meta_tagsNoA meta tags field that allows you to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. This helps with SEO and social sharing.
Header Area
Contentfield_header_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This allows for rich and structured content within the header.
Content Area
Descriptionfield_class_descriptionNoText area for the class description/body, using a WYSIWYG editor. A summary is not available for this field.
Contentfield_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is the main content area for the class.
Sidebar Area
Contentfield_sidebar_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is for content that will appear in the sidebar of the class page.
Bottom Area
Contentfield_bottom_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is for content that appears at the bottom of the class page, often used for calls to action or related links.

Note: Fields marked as “Field group” are not actual fields but are used to group the fields in the table for better readability.

URL pattern

The Class content type uses the following URL pattern:

/programs/[program-category]/[activity-category]/[class-title]/class-times

Example:

/programs/adult-programs/yoga/beginner-yoga-class/class-times

Explanation:

  • /programs: Base path for program content.
  • [program-category]: The title of the program category, derived from the field_class_activity reference field to the Activity taxonomy term, which in turn references the Program taxonomy term: [node:field_class_activity:entity:field_activity_category:entity:field_category_program:entity:title].
  • [activity-category]: The title of the activity category, derived from the field_class_activity reference field to the Activity taxonomy term: [node:field_class_activity:entity:field_activity_category:entity:title].
  • [class-title]: The title of the class node: [node:title].
  • /class-times: A fixed suffix for the class times page.

8 - Event

The Event content type is used for adding and managing events on the site.

Fields

LabelMachine NameRequiredDescriptionField SettingsNotes
Titledrupal’s defaultYesTitle of the event.
Sub-titleN/ANoSubtitle of the event.Plain text
Locationsfield_event_locationYesReference field to branch and camp nodes. Allows multiple values.Address for the event; can be either a branch or a non-branch location.
Categoryfield_event_categoryNoReference field for choosing terms from the “Event Category” vocabulary. Allows multiple values.
Meta Tagsfield_meta_tagsNoAllows providing structured metadata and Open Graph meta tags for social networking sites like Facebook, Pinterest, and LinkedIn.
Imagefield_event_imageNoImage for the event. Entity reference to a Media bundle.Media
Datefield_event_dateYesUses Drupal’s built-in date/time fields.
Add to Calendarfield_add_to_calendar_linkNoLink to add event to calendar.Link
BodybodyNoTextarea for the event description with WYSIWYG editor, without summary.
Contentfield_contentNoFilter list of available layout builder components.
Related Contentfield_event_relatedNoReference field for choosing related Event nodes. Allows multiple values.

URL pattern

The Event content type uses the following URL pattern:

/event/[node:title]

9 - Facility

Facility content type is used for adding facilities on the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the facility item.
Neighborhoodfield_location_areaNoA taxonomy reference field using the Area Vocabulary(area).
Typefield_facility_typeNoA taxonomy reference field using the “Facility Type” vocabulary.
Facility Branchfield_facility_locNoAn entity reference field to reference the related Branch node.
Meta Tagsfield_meta_tagsNoA meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites.
ContactField group
Addressfield_location_addressNoAn address field that will provide the ability to add details about the locations. Details to be completed:
  • Address
  • City
  • State
  • Zip Code
Facility Coordinatesfield_location_coordinatesNoInput for providing the latitude and longitude information.
Phonefield_location_phoneYesInput for providing the phone information.
Faxfield_location_faxNoInput for providing the fax information.
Emailfield_location_emailNoInput for providing the email information.
Directionsfield_location_directionsNoA link field for adding the directions link.
Facility Hoursfield_branch_hoursNoThe facility hours.
Facility Holiday Hoursfield_branch_holiday_hoursNoAny special holiday hours for the facility.
Content AreaField group
Contentfield_contentNoA paragraph embed field that will allow us to add various flexible content modules, from the predefined list of paragraph types.
Sidebar AreaField group
Contentfield_sidebar_contentNoA paragraph embed field that will allow us to add various flexible content modules, from the predefined list of paragraph types.

URL pattern

Content type is using the following pattern:

/facility/[node:title]

10 - Landing Page

The Landing Page content type is used for creating landing pages on the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the landing page item.
Layoutfield_lp_layoutYesSelect list with the options:
  • one_column_clean|One Column - Full width
  • one_column|One Column
  • two_column|Two Columns
  • two_column_fixed|Two Columns with fixed sidebar (sticky at the top)
Meta Tagsfield_meta_tagsNoA meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites.
Header AreaField group
Contentfield_header_contentNoA paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types.
Content AreaField group
Contentfield_contentNoA paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types.
Sidebar AreaField group
Contentfield_sidebar_contentNoA paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types.
Bottom AreaField group
Contentfield_bottom_contentNoA paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types.

URL pattern

The content type uses the following pattern:

[node:title]

11 - Landing Page (Layout Builder)

Landing Page content type is used to add Landing Pages to your website using Layout Builder widgets.

This page is managed with Layout Builder. You may want to uncheck “Published” before creating a page, use the “Layout” tab to build the content, then Publish when the page is complete. See our User Guide for help. You can also use the “Save and edit layout” button to stay in Layout Builder after saving.

Fields

LabelMachine NameRequiredDescriptionField SettingsNotes
TitletitleYesTitle of Landing PageThis is used as the administrative title and may also be displayed on the page, depending on your Layout Builder configuration.
MetadataField group
Meta descriptionfield_meta_descriptionNoShort text used for metatags and cardsText (plain, long)A brief and concise summary of the pages content that is a maximum of 160 characters in length.
Meta imagefield_meta_imageNoMedia image reference for use in metatags and cardsEntity reference (Media image)Choose or upload an image to be used as a thumbnail for social sharing and preview cards.
Meta tagsfield_meta_tagsNoProvided by Metatag module. Advanced meta tag configuration.This section should not be edited unless you are familiar with meta tags.

URL pattern

This content type uses the following pattern by default: [node:title]

12 - Membership

The Membership content type is used for adding membership information to the site.

Fields

NameMachine nameRequiredDescription
TitleDrupal’s defaultYesTitle of the membership item.
Descriptionfield_mbrshp_descriptionYesTextarea for the description/body with WYSIWYG, without summary.
Imagefield_mbrshp_imageYesMedia field to upload the image.
Membership infofield_mbrshp_infoParagraphParagraph to indicate the location where the membership is available and the URL.
Locationfield_mbrshp_locationNoSelect list with locations (branches). Single value.
Linkfield_mbrshp_linkNoLink field to provide the membership redirect URL.
Join Feefield_mbrshp_join_feeNoDollar value for how much someone has to pay to join.
Monthly Ratefield_mbrshp_monthly_rateNoDollar value for the monthly fee of the membership.

URL pattern

The content type uses the following pattern for its URLs:

/membership/[node:title]

13 - News

The News Post content type is used for adding news posts to the site. News posts are typically displayed in a list or grid format, with the most recent posts appearing first.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the news item. This field is a standard Drupal title field.
Locationsfield_news_locationYesReference field to branch and camp nodes. Allows multiple values, enabling you to associate the news item with multiple locations.
Categoryfield_news_categoryNoReference field for choosing a term from the “News Category” vocabulary. Allows multiple values, enabling categorization of the news item.
Meta Tagsfield_meta_tagsNoA meta tags field that allows you to provide structured metadata and Open Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites.
Content AreaField group
Imagefield_news_imageNoImage field for the News item. Entity reference to a Media bundle. This allows you to select an existing image from the media library.
Descriptionfield_news_descriptionNoText area for the description/body with WYSIWYG (What You See Is What You Get) editor, without summary option.
Contentfield_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types.
Sidebar AreaField group
Related contentfield_news_relatedNoReference field for choosing related News nodes. Allows multiple values to link to other relevant news items.
Contentfield_sidebar_contentNoA paragraph embed field that allows you to add various flexible content modules to the sidebar from a predefined list of paragraph types.

URL pattern

This content type uses the following URL pattern:

/news/[node:title]

The [node:title] token is replaced with the title of the news item, with spaces replaced by hyphens. For example, a news item with the title “New Branch Opens” would have the URL /news/new-branch-opens.

14 - Program

The Program content type is used for adding Programs to the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the program item.
Meta Tagsfield_meta_tagsNoA meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites.
Header AreaField group
Iconfield_program_iconNoAn image field, supporting .svg for uploading the program icon.
Imagefield_program_imageNoAn image field, for uploading the program image.
Colorfield_program_colorNoReference field for choosing a term from the “Color” vocabulary.
Contentfield_header_contentNoA paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types. If this field is not empty, the image and icon are not displayed on the page.
Content AreaField group
Descriptionfield_program_descriptionNoText area for the description/body with WYSIWYG, without summary.
Contentfield_contentNoA paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types.
Sidebar AreaField group
Contentfield_sidebar_contentNoA paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types.

URL pattern

This content type uses the following URL pattern:

/programs/[node:title]

15 - Program Subcategory

The Program Subcategory content type is used for adding program subcategories to the site.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the program subcategory item.
Programfield_category_programYesA reference field for selecting the program. This establishes the parent program for the subcategory.
Meta Tagsfield_meta_tagsNoA meta tags field that allows you to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. This helps with SEO and social sharing.
Header AreaField group
Imagefield_category_imageNoAn image field for uploading the category image. This image is typically displayed in the header area of the subcategory page.
Colorfield_category_colorNoReference field for choosing a color term from the “Color” vocabulary. This allows you to visually distinguish subcategories.
Contentfield_header_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This allows for rich and dynamic content within the header area.
Content AreaField group
Descriptionfield_category_descriptionNoA textarea for the description/body of the subcategory, using a WYSIWYG editor and without a summary field.
Contentfield_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is the main content area of the subcategory page.
Sidebar AreaField group
Contentfield_sidebar_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This is the content that will appear in the sidebar of the subcategory page.
Bottom AreaField group
Contentfield_bottom_contentNoA paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. This allows you to add content to the very bottom of the subcategory page. This could be calls to action, related content, or other supplemental information.

URL pattern

This content type uses the following URL pattern:

/programs/[node:field_category_program:entity:title]/[node:title]

This means that the URL will be constructed using the title of the parent program and the title of the subcategory itself. For example, if the parent program is “Youth Programs” and the subcategory is “Summer Camp”, the URL would be /programs/youth-programs/summer-camp.

16 - Promotion

Promotions are timed pieces of content that allow content editors the flexibility to create a single item that can be placed in multiple locations on the site, without having to duplicate or manage content in multiple locations. This content type is typically not displayed on its own page.

Fields

NameMachine nameField typeRequired?Description
TitletitleText (plain)YesThe main title of the promotion.
Subtitlefield_subtitleText (plain)NoA secondary title or short description displayed below the main title.
CTA / linkfield_linkLinkNoA call-to-action link that directs users to a specific page or external resource.
Descriptionfield_promo_descriptionText (formatted, long)NoA longer description providing more details about the promotion. This field supports rich text formatting (e.g., bold, italics, lists, links).
Imagefield_promo_mediaEntity referenceYesAn image associated with the promotion. This is an entity reference to a media item.
Pagesfield_promo_visibility_pagesText (plain, long)NoA list of internal page paths where the promotion should be displayed. Use relative paths. One path per line. Use <front> for the front page.
Promotion Categoryfield_promo_categoryEntity referenceNoA category that classifies the promotion (e.g., “New Product,” “Sale,” “Event”). This is an entity reference to a taxonomy term.
Promotion Priorityfield_promo_priorityList (text)YesDetermines the order in which promotions are displayed. Options might include “High,” “Medium,” and “Low.”
Promotion visibility statefield_promo_visibility_stateList (text)YesControls whether the promotion is visible or hidden. Options may include “Published”, “Unpublished”.

URL pattern

Promotions are generally embedded within other pages and do not have their own dedicated URL. Therefore, no URL pattern is defined for this content type.

17 - Session

The Session content type is used for adding Sessions to the site. Sessions typically represent events, classes, or other scheduled activities.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the session item.
Classfield_session_classYesA reference field for selecting the program subcategory or type of session. This allows you to categorize sessions.
Session InfoField group--
Descriptionfield_session_descriptionNoTextarea for the description/body of the session. Uses a WYSIWYG editor (like CKEditor) without a summary field.
Genderfield_session_genderNoSelect List with Gender options: Coed, Male, Female. This allows you to specify if the session is intended for a specific gender or is coeducational.
Online registrationfield_session_onlineNoBoolean field (checkbox) that determines if a “Register Now” button/link is displayed for the session.
Ticket requiredfield_session_ticketNoCheckbox field to indicate that a ticket is required to attend the session.
Min Agefield_session_min_ageNoInput field for adding the minimum age allowed to participate in the session.
Max Agefield_session_max_ageNoInput field for adding the maximum age allowed to participate in the session.
Registration linkfield_session_reg_linkNoA link field containing the URL for session registration. This is used if online registration is handled by a third-party system.
MembershipField group--
In membershipfield_session_in_mbrshNoBoolean field (checkbox) that indicates whether the session is included in a membership package.
Member pricefield_session_mbr_priceNoInput field for specifying the price for members.
Non Member Pricefield_session_nmbr_priceNoInput field for specifying the price for non-members.
LocationField group--
Locationfield_session_locationYesA reference field for selecting the branch or camp where the session is held. This should link to a location content type.
Physical Locationfield_session_plocationNoA reference field for selecting the specific facility (e.g., room, gym) within the branch or camp where the session takes place. This should link to a facility content type.
TimeField group--
Exclusionsfield_session_exclusionsNoA date field that identifies specific dates on which the session will not be held, even if it’s normally scheduled. Supports multiple values. Should be a single date field with the ’end date’ option enabled. Its widget should be adjusted to not show period end date, but show period end time (to keep period start/end date equal).
Timefield_session_timeParagraphSession schedule defined using a Paragraph content type.
Date & Timefield_session_time_dateNoA Drupal date/time field. Should be a single date field with both ’end date’ and ’end time’ options enabled.
Daysfield_session_time_daysNoCheckboxes with the following values:
  • sunday|Sunday
  • monday|Monday
  • tuesday|Tuesday
  • wednesday|Wednesday
  • thursday|Thursday
  • friday|Friday
  • saturday|Saturday
Supports multiple values, allowing you to select all days on which the session occurs.

URL pattern

No dedicated URL pattern is defined for the Session content type by default. The intention is that this content type may not be directly accessed by end-users via a dedicated URL.

18 - Social Post

The Social Post content type is used for adding social media posts to the site. Social Posts are typically fetched from social networks using a module like the Social Feed Fetcher.

Fields

NameMachine nameRequiredDescription
Titledrupal’s defaultYesTitle of the social post content item.
IDfield_idYesPost ID in the social network. This is a system field used by the post fetcher to identify the social post.
Imagefield_sp_imageNoImage field for saving the post image. Supports jpg, png, and gif formats.
Linkfield_linkNoContains the link to the original post on the social network.
Platformfield_platformYesThe name of the platform where the post was imported from (e.g., Facebook, Twitter, Instagram).
Postfield_postYesThe text content of the post. May contain HTML markup.
Postedfield_postedYesThe date and time when the post was originally posted on the social network.

URL pattern

The content type uses the following URL pattern:

/social_post/[node:title]