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
Name | Machine name | Required | Description |
---|
Title | drupal's default | Yes | Title of the activity item. This is the standard Drupal title field. |
Program Subcategory | field_activity_category | Yes | A 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 Area | Field group | | A field group to organize the main content of the Activity. |
Description | field_activity_description | No | Textarea 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the alert, which will display as the headline. |
Background color | field_alert_color | Yes | Reference field for choosing a term from the “Color” vocabulary. |
Text color | field_alert_text_color | Yes | Reference field for choosing a term from the “Color” vocabulary. For accessibility, stick to using either black or white. |
Icon color | field_alert_icon_color | No | Reference field for choosing a term from the “Color” vocabulary. Leave empty to hide the icon. |
Placement | field_alert_place | Yes | Select list field (singular) for choosing placement: |
Description | field_alert_description | Yes | Textarea 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. |
Link | field_alert_link | No | Internal or external link. Adds a button with a call to action to the alert on the right. The button color defaults to black. |
Reference | field_alert_belongs | No | Entity 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the article item. This field utilizes the core text field type. See
TextItem.php for more information. |
Sub-title | field_article_subtitle | No | Sub-title of the article item. |
Locations | field_article_location | Yes | Reference field to branch and camp nodes. Allows multiple values. |
Category | field_article_category | No | Reference field for choosing terms from the “Blog Category” vocabulary. Allows multiple values. |
Meta Tags | field_meta_tags | No | A 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. |
Type | field_article_type | Yes | Select list field with the following options for choosing the article type: |
| | | - News Item (default) |
| | | - Blog Post |
| | | - Press Release |
Image | field_article_image | No | Image field for the article item. Entity reference to a Media bundle. |
Body | body | No | Text area for the main content of the article. This field uses a WYSIWYG editor and does not include a summary field. |
Content | field_content | No | Filter list of available
Layout Builder components. This field enables the arrangement of content using configurable layouts. |
Related Content | field_article_related | No | Reference 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
Name | Machine name | Required | Description |
---|
Title | Drupal’s default | Yes | Title of the blog item. |
Locations | field_blog_location | Yes | Reference field to branch and camp nodes. Allows multiple values, enabling association with multiple locations. |
Category | field_blog_category | No | Reference field for choosing terms from the “Blog Category” vocabulary. Allows multiple values, categorizing blogs under several topics. |
Meta Tags | field_meta_tags | No | Allows providing structured metadata and Open Graph meta tags for social networking sites like Facebook, Pinterest, and LinkedIn, enhancing SEO and sharing. |
Styles | Field group | | |
Style | field_blog_style | Yes | Select list field with multiple options for choosing a style: |
| | | - Story Card |
| | | - Photo Card |
| | | - News Card (default) |
| | | - Color Card |
Background color | field_blog_color | No | Background color for the teaser, used when the “Color Card” style is selected. |
Text color | field_blog_text_color | No | Text color for the teaser, used when the “Color Card” style is selected. |
Content Area | Field group | | |
Image | field_blog_image | No | Image field for the Blog item. Entity reference to a Media bundle, allowing selection of pre-uploaded images. |
Description | field_blog_description | No | Textarea for the description/body with WYSIWYG editing capabilities and no summary field. |
Content | field_content | No | A Paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types. |
Sidebar Area | Field group | | |
Related content | field_blog_related | No | Reference field for choosing related Blog nodes. Allows multiple values for cross-linking content. |
Content | field_sidebar_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | Drupal’s default | Yes | Title of the branch item. This is the main identifier for the branch. |
Neighborhood | field_location_area | No | A taxonomy reference field using the “Area” vocabulary. This allows you to categorize branches by geographical area or neighborhood. |
Coming Soon | field_location_state | No | A checkbox field to indicate if the branch is still in development or not yet open to the public. |
Temporary URL | field_location_temp_url | No | A 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 Tags | field_meta_tags | No | A 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. |
Contact | Field group | | |
Address | field_location_address | Yes | An address field that allows you to add detailed location information. This field stores: |
Branch Coordinates | field_location_coordinates | No | Input for providing the latitude and longitude information. |
Phone | field_location_phone | Yes | Input for providing the branch’s phone number. |
Fax | field_location_fax | No | Input for providing the branch’s fax number (if applicable). |
Email | field_location_email | No | Input for providing the branch’s email address. |
Directions | field_location_directions | No | A link field for adding a directions link (e.g., to a Google Maps page or other online mapping service). |
Branch Hours | Field group | | |
Branch Hours | field_branch_hours | Paragraph | A paragraph field to indicate the branch’s hours of operation. This allows for flexible scheduling, including different hours for different days. |
Day of the week | field_branch_hours_day | No | A select list with the following values:- sunday|Sunday
- monday|Monday
- tuesday|Tuesday
- wednesday|Wednesday
- thursday|Thursday
- friday|Friday
- saturday|Saturday
|
Start/End Time | field_branch_hours_time | No | A text field with a description “e.g. 9am - 5pm, closed.” This field stores the opening and closing times for a specific day. |
Header Area | Field group | | |
Content | field_header_content | No | A 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 Area | Field group | | |
Content | field_content | No | A 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 Area | Field group | | |
Content | field_bottom_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | Drupal’s default | Yes | Title of the camp item. |
Menu links | field_camp_menu_links | Yes | Link field with multiple values, that should have the Title and Link field. Based on it, we will complete the Camp Menu. |
Meta Tags | field_meta_tags | No | A meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. |
Contact | Field group | | |
Address | field_location_address | Yes | An address field that will provide the ability to add details about the locations. Details to be completed: |
| | | - Address |
| | | - City |
| | | - State |
| | | - Zip Code |
Camp Coordinates | field_location_coordinates | No | Input for providing the latitude and longitude information. |
Phone | field_location_phone | Yes | Input for providing the phone information. |
Fax | field_location_fax | No | Input for providing the fax information. |
Email | field_location_email | No | Input for providing the email information. |
Directions | field_location_directions | No | A link field for adding the directions link. |
Header Area | Field group | | |
Content | field_header_content | No | A paragraph embed field that will allow us to add various flexible content modules from the predefined list of paragraph types. |
Content Area | Field group | | |
Content | field_content | No | A paragraph embed field that will allow us to add various flexible content modules from the predefined list of paragraph types. |
Bottom Area | Field group | | |
Content | field_bottom_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the class item. |
Activity | field_class_activity | No | A reference field for selecting the activity the class belongs to. This field references a taxonomy term from the “Activity” vocabulary. |
Meta Tags | field_meta_tags | No | A 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 | | | |
Content | field_header_content | No | A 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 | | | |
Description | field_class_description | No | Text area for the class description/body, using a WYSIWYG editor. A summary is not available for this field. |
Content | field_content | No | A 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 | | | |
Content | field_sidebar_content | No | A 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 | | | |
Content | field_bottom_content | No | A 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
Label | Machine Name | Required | Description | Field Settings | Notes |
---|
Title | drupal’s default | Yes | Title of the event. | | |
Sub-title | N/A | No | Subtitle of the event. | Plain text | |
Locations | field_event_location | Yes | Reference field to branch and camp nodes. Allows multiple values. | | Address for the event; can be either a branch or a non-branch location. |
Category | field_event_category | No | Reference field for choosing terms from the “Event Category” vocabulary. Allows multiple values. | | |
Meta Tags | field_meta_tags | No | Allows providing structured metadata and Open Graph meta tags for social networking sites like Facebook, Pinterest, and LinkedIn. | | |
Image | field_event_image | No | Image for the event. Entity reference to a Media bundle. | Media | |
Date | field_event_date | Yes | Uses Drupal’s built-in date/time fields. | | |
Add to Calendar | field_add_to_calendar_link | No | Link to add event to calendar. | Link | |
Body | body | No | Textarea for the event description with WYSIWYG editor, without summary. | | |
Content | field_content | No | Filter list of available layout builder components. | | |
Related Content | field_event_related | No | Reference 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the facility item. |
Neighborhood | field_location_area | No | A taxonomy reference field using the Area Vocabulary(area). |
Type | field_facility_type | No | A taxonomy reference field using the “Facility Type” vocabulary. |
Facility Branch | field_facility_loc | No | An entity reference field to reference the related Branch node. |
Meta Tags | field_meta_tags | No | A meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. |
Contact | Field group | | |
Address | field_location_address | No | An address field that will provide the ability to add details about the locations. Details to be completed: |
Facility Coordinates | field_location_coordinates | No | Input for providing the latitude and longitude information. |
Phone | field_location_phone | Yes | Input for providing the phone information. |
Fax | field_location_fax | No | Input for providing the fax information. |
Email | field_location_email | No | Input for providing the email information. |
Directions | field_location_directions | No | A link field for adding the directions link. |
Facility Hours | field_branch_hours | No | The facility hours. |
Facility Holiday Hours | field_branch_holiday_hours | No | Any special holiday hours for the facility. |
Content Area | Field group | | |
Content | field_content | No | A paragraph embed field that will allow us to add various flexible content modules, from the predefined list of paragraph types. |
Sidebar Area | Field group | | |
Content | field_sidebar_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the landing page item. |
Layout | field_lp_layout | Yes | Select list with the options:one_column_clean |One Column - Full widthone_column |One Columntwo_column |Two Columnstwo_column_fixed |Two Columns with fixed sidebar (sticky at the top)
|
Meta Tags | field_meta_tags | No | A meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. |
Header Area | Field group | | |
Content | field_header_content | No | A paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types. |
Content Area | Field group | | |
Content | field_content | No | A paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types. |
Sidebar Area | Field group | | |
Content | field_sidebar_content | No | A paragraph embed field that allows you to add various flexible content modules from the predefined list of paragraph types. |
Bottom Area | Field group | | |
Content | field_bottom_content | No | A 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
Label | Machine Name | Required | Description | Field Settings | Notes |
---|
Title | title | Yes | Title of Landing Page | | This is used as the administrative title and may also be displayed on the page, depending on your Layout Builder configuration. |
Metadata | Field group | | | | |
Meta description | field_meta_description | No | Short text used for metatags and cards | Text (plain, long) | A brief and concise summary of the pages content that is a maximum of 160 characters in length. |
Meta image | field_meta_image | No | Media image reference for use in metatags and cards | Entity reference (Media image) | Choose or upload an image to be used as a thumbnail for social sharing and preview cards. |
Meta tags | field_meta_tags | No | Provided 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
Name | Machine name | Required | Description |
---|
Title | Drupal’s default | Yes | Title of the membership item. |
Description | field_mbrshp_description | Yes | Textarea for the description/body with WYSIWYG, without summary. |
Image | field_mbrshp_image | Yes | Media field to upload the image. |
Membership info | field_mbrshp_info | Paragraph | Paragraph to indicate the location where the membership is available and the URL. |
Location | field_mbrshp_location | No | Select list with locations (branches). Single value. |
Link | field_mbrshp_link | No | Link field to provide the membership redirect URL. |
Join Fee | field_mbrshp_join_fee | No | Dollar value for how much someone has to pay to join. |
Monthly Rate | field_mbrshp_monthly_rate | No | Dollar 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the news item. This field is a standard Drupal title field. |
Locations | field_news_location | Yes | Reference field to branch and camp nodes. Allows multiple values, enabling you to associate the news item with multiple locations. |
Category | field_news_category | No | Reference field for choosing a term from the “News Category” vocabulary. Allows multiple values, enabling categorization of the news item. |
Meta Tags | field_meta_tags | No | A 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 Area | Field group | | |
Image | field_news_image | No | Image field for the News item. Entity reference to a Media bundle. This allows you to select an existing image from the media library. |
Description | field_news_description | No | Text area for the description/body with WYSIWYG (What You See Is What You Get) editor, without summary option. |
Content | field_content | No | A paragraph embed field that allows you to add various flexible content modules from a predefined list of paragraph types. |
Sidebar Area | Field group | | |
Related content | field_news_related | No | Reference field for choosing related News nodes. Allows multiple values to link to other relevant news items. |
Content | field_sidebar_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the program item. |
Meta Tags | field_meta_tags | No | A meta tags field allows us to provide structured metadata and Graph meta tags for Facebook, Pinterest, LinkedIn, and other social networking sites. |
Header Area | Field group | | |
Icon | field_program_icon | No | An image field, supporting .svg for uploading the program icon. |
Image | field_program_image | No | An image field, for uploading the program image. |
Color | field_program_color | No | Reference field for choosing a term from the “Color” vocabulary. |
Content | field_header_content | No | A 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 Area | Field group | | |
Description | field_program_description | No | Text area for the description/body with WYSIWYG, without summary. |
Content | field_content | No | A paragraph embed field that allows adding various flexible content modules from a predefined list of paragraph types. |
Sidebar Area | Field group | | |
Content | field_sidebar_content | No | A 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the program subcategory item. |
Program | field_category_program | Yes | A reference field for selecting the program. This establishes the parent program for the subcategory. |
Meta Tags | field_meta_tags | No | A 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 | Field group | | |
Image | field_category_image | No | An image field for uploading the category image. This image is typically displayed in the header area of the subcategory page. |
Color | field_category_color | No | Reference field for choosing a color term from the “Color” vocabulary. This allows you to visually distinguish subcategories. |
Content | field_header_content | No | A 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 Area | Field group | | |
Description | field_category_description | No | A textarea for the description/body of the subcategory, using a WYSIWYG editor and without a summary field. |
Content | field_content | No | A 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 Area | Field group | | |
Content | field_sidebar_content | No | A 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 Area | Field group | | |
Content | field_bottom_content | No | A 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
Name | Machine name | Field type | Required? | Description |
---|
Title | title | Text (plain) | Yes | The main title of the promotion. |
Subtitle | field_subtitle | Text (plain) | No | A secondary title or short description displayed below the main title. |
CTA / link | field_link | Link | No | A call-to-action link that directs users to a specific page or external resource. |
Description | field_promo_description | Text (formatted, long) | No | A longer description providing more details about the promotion. This field supports rich text formatting (e.g., bold, italics, lists, links). |
Image | field_promo_media | Entity reference | Yes | An image associated with the promotion. This is an entity reference to a media item. |
Pages | field_promo_visibility_pages | Text (plain, long) | No | A 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 Category | field_promo_category | Entity reference | No | A category that classifies the promotion (e.g., “New Product,” “Sale,” “Event”). This is an entity reference to a taxonomy term. |
Promotion Priority | field_promo_priority | List (text) | Yes | Determines the order in which promotions are displayed. Options might include “High,” “Medium,” and “Low.” |
Promotion visibility state | field_promo_visibility_state | List (text) | Yes | Controls 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the session item. |
Class | field_session_class | Yes | A reference field for selecting the program subcategory or type of session. This allows you to categorize sessions. |
Session Info | Field group | - | - |
Description | field_session_description | No | Textarea for the description/body of the session. Uses a WYSIWYG editor (like CKEditor) without a summary field. |
Gender | field_session_gender | No | Select 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 registration | field_session_online | No | Boolean field (checkbox) that determines if a “Register Now” button/link is displayed for the session. |
Ticket required | field_session_ticket | No | Checkbox field to indicate that a ticket is required to attend the session. |
Min Age | field_session_min_age | No | Input field for adding the minimum age allowed to participate in the session. |
Max Age | field_session_max_age | No | Input field for adding the maximum age allowed to participate in the session. |
Registration link | field_session_reg_link | No | A link field containing the URL for session registration. This is used if online registration is handled by a third-party system. |
Membership | Field group | - | - |
In membership | field_session_in_mbrsh | No | Boolean field (checkbox) that indicates whether the session is included in a membership package. |
Member price | field_session_mbr_price | No | Input field for specifying the price for members. |
Non Member Price | field_session_nmbr_price | No | Input field for specifying the price for non-members. |
Location | Field group | - | - |
Location | field_session_location | Yes | A reference field for selecting the branch or camp where the session is held. This should link to a location content type. |
Physical Location | field_session_plocation | No | A 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. |
Time | Field group | - | - |
Exclusions | field_session_exclusions | No | A 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). |
Time | field_session_time | Paragraph | Session schedule defined using a Paragraph content type. |
Date & Time | field_session_time_date | No | A Drupal date/time field. Should be a single date field with both ’end date’ and ’end time’ options enabled. |
Days | field_session_time_days | No | Checkboxes 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
Name | Machine name | Required | Description |
---|
Title | drupal’s default | Yes | Title of the social post content item. |
ID | field_id | Yes | Post ID in the social network. This is a system field used by the post fetcher to identify the social post. |
Image | field_sp_image | No | Image field for saving the post image. Supports jpg , png , and gif formats. |
Link | field_link | No | Contains the link to the original post on the social network. |
Platform | field_platform | Yes | The name of the platform where the post was imported from (e.g., Facebook, Twitter, Instagram). |
Post | field_post | Yes | The text content of the post. May contain HTML markup. |
Posted | field_posted | Yes | The 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]