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

Return to the regular view of this page.

Content Structure

Welcome to the Content Structure documentation.

Here you can find technical descriptions of content entities and fields used by YMCA Website Services site builders. The YMCA Website Services core team has established specifications for fields and created naming conventions to help developers maintain and upgrade their sites alongside the YMCA Website Services development timeline.

Key Concepts

  • Content Entity: A fundamental unit of content, such as a page, article, or block.
  • Field: A specific data element within a content entity, like a title, body, image, or date.
  • Content Type: A pre-defined structure for content entities, specifying the available fields and their configuration.
  • Module: A collection of code that extends Drupal’s functionality, potentially introducing new content types, fields, or other features. See Extending and Altering Drupal.
  • Small Y: Refers to a specific set of modules within the YMCA Website Services ecosystem designed for smaller YMCA branches, as detailed in the Small Y module README.

Content Entities

Content entities are the building blocks of your website’s content. Each content type has a defined set of fields. Here are some commonly used content entities in YMCA Website Services:

  • Article: Used for news, announcements, and blog posts. Often includes fields for title, body, image, and publication date. (See also: ws_small_y/modules/small_y_articles/small_y_articles.info.yml)
  • Landing Page: Designed for creating visually appealing and informative pages. Offers flexible layouts and various content areas. (See also: openy_node_landing.info.yml)
  • Promotion: Used to highlight special offers, events, or campaigns. Typically includes fields for title, description, image, and link. (See also: ws_promotion.info.yml)
  • Branch/Facility: Represents a physical YMCA location, including address, hours, amenities, and social links. (See also: ws_small_y/modules/small_y_branch/small_y_branch.info.yml, y_facility.info.yml)
  • Camp: Content type for YMCA Camps, including integration with Layout Builder. (See also: y_camp/y_camp.info.yml)

Fields

Fields store specific data within content entities. Here are some common field types used in YMCA Website Services:

  • Text: Stores text content, with options for plain text, formatted text, and summaries.
  • Image: Uploads and stores images, with options for alt text and display settings.
  • Link: Stores URLs and link text.
  • Date: Stores dates and times.
  • Entity Reference: Establishes a relationship between one entity and one or more other entities. For example, a “Related Articles” field can link an article to other relevant articles.
  • Boolean: Stores true/false values (e.g., a “Featured” checkbox).
  • List (Options): Allows users to select a value from a predefined list.

Modules and Content Structure

Several modules contribute to the content structure of YMCA Website Services:

  • Y Layout Builder (y_lb): Provides a base for layout building functionalities.
  • Small Y (ws_small_y): Offers customizations for smaller YMCAs. See Small Y module README.
  • Layout Builder Restrictions: Allows administrators to restrict the available blocks and layouts within the Layout Builder.
  • Branch Modules (lb_branch_*_blocks): Provide specific block types for displaying branch-related information, such as amenities, hours, and social links.
  • Staff Members (lb_staff_members_blocks & ws_small_y_staff): Modules for displaying staff members.

Configuration Management

Configuration is managed through YAML files, which define the structure, data types, and translatability of content. See the Configuration API for details.

Additional Resources

1 - Blocks

What are Blocks?

Blocks are boxes of content rendered into a specific area, or region, of a web page. Blocks are placed and configured specifically for each theme, allowing for customization of content display and layout. Think of them as reusable content containers.

What are Content Blocks?

Content blocks are a specific type of block, where you can edit the content directly through the administrative interface. You can define one or more block types and attach fields to each block type, enabling structured content creation for blocks. Content blocks can be placed just like blocks provided by other modules.

What is the Block Description?

The block description is an administrative label for a block, which is displayed in the administrative interface to help identify the block. It is not displayed to site visitors on the live website.

What is the Block Title?

The block title is the heading that is optionally displayed to site visitors when the block is placed in a region. The visibility of the title can be configured within the block’s settings.

Managing Blocks

The Block module allows you to place existing blocks in regions of your installed themes and configure various block settings, such as title visibility, and user roles. The Block Content module allows you to manage custom block types and create/edit their content.

Additional Resources

1.1 - Basic

A simple block with a description. This block type is commonly used for displaying basic content on a website. It offers a single WYSIWYG field for content creation.

Fields

NameMachine nameRequiredDescription
Contentfield_block_contentYesWYSIWYG field without summary. Allows rich text formatting.

1.2 - Block Menu

The Block Menu implements a custom block type with links. Blocks are boxes of content rendered into a region of a web page. Content blocks are blocks whose content you can edit, placing them like blocks provided by other modules. The block description is an identification name for a block, shown in the administrative interface but not displayed on the site. The block title is the heading optionally shown to site visitors when the block is placed in a region.

Fields

NameMachine nameRequiredDescription
Menu Linksfield_menu_block_linksYesThe menu links to be displayed in the block.
Colorfield_menu_block_colorYesSelect the background gradient color for the menu block.
Text colorfield_menu_block_text_colorYesSelect the text color for the menu block.

1.3 - Branch Amenities

A block displaying a list of amenities for the current branch.

Fields

NameMachine nameRequiredDescription
Branch amenitiesfield_branch_amYesUses a custom formatter to display a list of amenities within a Paragraph block. This field is a boolean to indicate if the amenity is available. Hidden from content managers by default.
Linkfield_sb_linkNoA link to display at the bottom of the block. Allows for adding attributes like target, rel, and class.
Titlefield_sb_titleNoA title to display at the top of the block.
Icon classfield_icon_classNoA Font Awesome icon name, e.g., flag, car, or info. This overrides the image icon. See Font Awesome for available icons.
Section Titlefield_section_titleNoSection heading
Section Subtitlefield_section_subtitleNoSection subheading
Imagefield_imageNoImage for the block. Uses the amenities_image image style.

1.4 - Custom Simple

A simple block with a body, title, icon and link.

Fields

NameMachine nameRequiredDescription
Iconfield_iconNoIcon for the block.
Icon classfield_icon_classNoProvide a “Font Awesome” icon name, e.g. flag, car, info. Overrides image icon. See available icons here.
Bodyfield_sb_bodyNoEnter the main body text for the block. Supports basic HTML.
Linkfield_sb_linkNoAdd a link to the block. Provide a full URL.
Titlefield_sb_titleNoTitle to display at the top of the block. If left blank, no title will be displayed.

1.5 - Flexible

The Flexible block provides a way to display content from a referenced node.

Fields

NameMachine nameRequiredDescription
Node referencefield_node_refYesProvide a reference to a Node. The content of the referenced node will be displayed in the block.

2 - 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.

2.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.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].

2.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]

2.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]

2.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]

2.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]

2.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.

2.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]

2.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]

2.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]

2.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]

2.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]

2.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.

2.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]

2.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.

2.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.

2.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.

2.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]

3 - Layout Builder

These custom block types exist to support page building with Layout Builder. Blocks are boxes of content rendered into a region of a web page. Content blocks are blocks whose content you can edit.

Global Fields

These fields are reused across many of the below components.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section headingfield_section_headingText (plain)No1H2
Section subheadingfield_section_subheadingText (plain, long)No1H3

Accordion

Expandable pairs of question/answer or header/section fields.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Accordion itemfield_block_itemEntity referenceNoUnlimitedBundle: accordion_item
FAQ?field_is_faqBooleanNo1If this section contains Frequently Asked Questions, check this box to output them as structured data…

Accordion Item

  • Machine name: accordion_item
LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_titleText (plain)Yes1H4
BodybodyText (formatted, long, with summary)Yes1WYSIWYG

Branch Amenities

Display of all amenities available at a branch location.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Amenity namefield_amenity_nameEntity referenceYesUnlimitedTaxonomy

Cards

Flexible card-style components that allow up to 4 cards to display across a page depending on the chosen layout.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Section linkfield_ctaLinkNo1
# of columnsfield_columnsList (text)Yes1
Card itemsfield_block_itemEntity referenceNo4Bundle: card_item

Card Item

Machine name: card_item

The Card item block is referenced by the Cards block.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_titleText (plain)Yes1H4
Imagefield_mediaEntity referenceNo1
Topic tagfield_topic_tagEntity referenceNo1Bundle: blog_category, news_category
Descriptionfield_bodyText (plain, long)No1
Linkfield_ctaLinkNo1

A full-width display with multiple sets of a header, description, and call to action overlaid on top of an image.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Carousel itemsfield_block_itemEntity referenceNo6Bundle: carousel_item

Machine name: carousel_item

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_titleText (plain)No1H4
Imagefield_mediaEntity referenceYes1
Descriptionfield_descriptionText (formatted, long)No1
Linkfield_ctaLinkNo1

Code

  • Machine name: ws_code_block
  • Project: ws_code_block
  • Designs: This block provides no additional presentation outside of the embedded content.

Embed unfiltered HTML code in a page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Codefield_codeText (formatted, long)Yes1Text format: “Code”

Grid CTA

Sets of content with a headline, description, and link displayed in 2 to 4-item wide rows, with the option to include icons or images.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Grid CTA section linkfield_section_cta_linkLinkNo1A link button to be displayed below the grid content
# of columnsfield_columnsList (text)Yes1Allows 2-4 columns, defaults to 4.
Grid itemfield_block_itemEntity ReferenceYes4Bundle: grid_item

Grid Item

Machine name: grid_item

The Grid Item block is referenced by the Grid CTA component.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_titleText (plain)No1H4
Descriptionfield_descriptionText (formatted, long)No1
Mediafield_mediaEntity referenceNo1
Linkfield_ctaLinkNo1

Hero Banner

A full-width, almost full-height display with a header, description, and call to action overlaid on an image.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_headingText (plain)Yes1H2
Descriptionfield_descriptionText (formatted, long)No1
Mediafield_mediaEntity referenceNo1Bundle: Image, Local Video, Video
Linkfield_linkLinkNo1

Partners

List of multiple partner / sponsor logos.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Partner itemsfield_partner_itemsEntity reference revisionsNoUnlimitedBundle: lb_partner_item

Partner Item

Machine Name: lb_partner_item

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_item_headingText (plain)Yes1H4
Imagefield_item_imageEntity referenceYes1

Ping-pong

Usually paired sets of full-width page components that include media, header, description, and call to action arranged horizontally.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Headingfield_item_headingText (plain)No1H4
Descriptionfield_item_descriptionText (formatted, long)No1WYSIWYG
Linkfield_item_linkLinkNo2The first will use the primary style and the second, secondary.
Imagefield_item_imageEntity referenceNo1
Image positionfield_item_image_positionList (text)Yes1Places the image on this side of the page in the full-width display. Image will stack above text at narrow widths.

Promo Card

A title, headline, description, and link that usually display in the right or left sidebar.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Titlefield_titleText (plain)Yes1
BodybodyText (formatted, long, with summary)No1
Imagefield_imageEntity referenceNo1Bundle: Image
Linkfield_linkLinkNo1

Component for displaying related articles within a page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3

Component for displaying related events within a page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3

Simple Content

Allows users to be able to view responsive tables within a page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
BodybodyText (formatted, long, with summary)No1Allows for responsive tables to be placed in the body.

Simple Menu

A simple 1-level sidebar menu that can display in either the right or left sidebar area.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Iconfield_iconEntity referenceNo1Bundle: Image
Linksfield_linksLinkYesUnlimited

Staff

Displays simple staff member info cards with image, name, title, email

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Staff itemsfield_staff_itemsEntity reference revisionsNoUnlimitedBundle: lb_staff_item

Staff Item

Machine name: lb_staff_item

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Namefield_item_nameText (plain)Yes1H4
Imagefield_item_imageEntity referenceYes1If no image uploaded, utilize default
Job titlefield_item_job_titleText (plain)Yes1
Emailfield_item_emailText (formatted, mailto)Yes1Clicking on email should open users default email client

Statistics

Infographic-like display that highlights relevant statistics to users.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
# of columnsfield_columnsList (text)Yes1
Section linkfield_ctaLinkNo1
Statistics itemfield_block_itemEntity referenceNoUnlimitedBundle: statistics_item

Statistics Item

Machine name: statistics_item

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Number valuefield_subtitleText (plain)Yes1
Descriptionfield_descriptionText (plain)No1

Tabs

Gives users the ability to switch page views by selecting tabs across the top of the page instead of having to navigate to a new page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Tab itemfield_block_itemEntity referenceNoUnlimitedBundle: tab_item

Tab Item

Machine name: tab_item

The Tab Item block is referenced by the Tabs block.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Headingfield_headingText (plain)Yes1H4
Bodyfield_descriptionText (formatted, long)No1WYSIWYG

Testimonials

Display of short testimonials or quotes.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Section heading(inherit)H2
Section subheading(inherit)H3
Testimonial itemsfield_testimonial_itemsEntity reference revisionsNo4Bundle: lb_testimonial_item

Testimonial Item

Machine Name: lb_testimonial_item

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Namefield_item_nameText (plain)Yes1Firstname, LastnameH4
Imagefield_item_imageEntity referenceYes1If no image uploaded, utilize default
Quotefield_item_quoteText (plain)Yes1

Webform

Embed an existing webform on a page.

LabelMachine NameTypeRequiredCardinalityHelp textField SettingsNotes
Form title(inherit)
Form subtitle(inherit)
Webformfield_webformWebformYes1

4 - Media

What are Media Items?

Core media items include audio, images, documents, and videos. You can add other media types, such as social media posts, through the use of contributed modules. Media items may be files located in your site’s file system or remote items referenced by a URL. Media items are content entities, and they are divided into media types (which are entity sub-types); media types can have fields. Refer to the Content Structure documentation for more information on content entities and fields.

What is the Media Library?

The media library is a visual user interface for managing and reusing media items. Add media items to content using Media reference fields and the Media library field widget.

What is an Image Style?

An image style is a set of processing steps, known as effects, that can be applied to images. Examples of effects include scaling and cropping images to different sizes. Responsive image styles can associate image styles with your theme’s size breakpoints. This allows serving images sized for the browser width.

Overview of Managing Media

The following modules provide media-related functionality:

  • Media items and media types are managed by the core Media module.
  • The core Media module provides a Media reference field to add media to content entities. The core File and Image modules also provide reference fields. It is recommended to use the Media reference field because it is more versatile.
  • The core Media Library module provides the media library and the Media library field widget. With this module installed, the Media library field widget becomes the default widget for editing Media reference fields.
  • The core Image module provides a user interface for defining image styles. The core Responsive Image module provides responsive image styles. Using the core Breakpoint module and a breakpoint-enabled theme, these responsive styles can serve images sized for the browser.

See the related topics listed below for specific tasks.

Additional Resources

4.1 - WYSIWYG View Modes

The following view modes are available for embedding media assets within a WYSIWYG editor, such as CKEditor 5. These view modes offer different display options for media assets, allowing content creators to choose the most appropriate presentation for their content.

View Modes

NameMachine nameDescription
Fullembedded_fullDisplays the media asset at its full width within the available container.
Halfembedded_halfDisplays the media asset at half its original width, typically with alignment options (left or right) to control its placement.
Linkembedded_linkDisplays a simple link to the media asset, directing the user to the original file.

Bundle Details

The display of each media asset type (Image, Video, Document) varies depending on the selected view mode. The following outlines the specific rendering for each bundle:

Image

  • Full & Half View Modes: Images are displayed using the <img> tag with appropriate CSS classes applied for styling and responsiveness. The specific classes may vary depending on the theme and styling configuration.
  • Link View Mode: A hyperlink (<a> tag) is generated, pointing to the original image file. The link includes target="_blank" to open the image in a new tab or window.

Video

  • Full & Half View Modes: Videos are displayed as embedded video players, likely using the <video> tag or an <iframe> to embed from a video hosting platform. Appropriate CSS classes are applied for styling.
  • Link View Mode: A hyperlink (<a> tag) is generated, pointing to the original video file. The link includes target="_blank" to open the video in a new tab or window.

Document

  • Full & Half View Modes: Documents are displayed using an <iframe> tag. The src attribute of the <iframe> points to a service like Google Docs Viewer, which renders the document within the iframe. Replace URL with the actual URL of the document. Appropriate CSS classes are applied for styling.

    <iframe src="//docs.google.com/gview?url=URL&embedded=true" frameborder="0"></iframe>
    
  • Link View Mode: A hyperlink (<a> tag) is generated, pointing to the original document file. The link includes target="_blank" to open the document in a new tab or window.

5 - Paragraphs

Welcome to YMCA Website Services Paragraphs.

Paragraphs are content components, aligning with component-based design principles. Within the YMCA Website Services architecture, paragraphs are based on the Paragraphs Drupal module. This module enables the creation of Paragraphs entities.

The core idea is to provide a user-friendly widget for adding predefined content blocks directly within a page or other content item, without needing to reference external entities. It’s important to note that paragraphs are not intended as reusable content types. For reusable content, consider using blocks or other entities within Drupal.

Paragraphs enhance the user experience by offering a convenient and structured way to build content. They allow content editors to create unique layouts for their pages. Each paragraph represents a distinct content section, complete with its own styling, functionality, and fields.

Here’s a breakdown of key aspects:

  • Paragraphs Module: Facilitates the creation of paragraph entities within Drupal.

  • Component-Based Design: Paragraphs align with the principle of building interfaces from independent, reusable components.

  • User Experience (UX): Paragraphs are designed to make content creation more intuitive and efficient.

  • Non-Reusable Types: Paragraphs are not designed to be reused across multiple content items. Instead, look at Drupal blocks or entities.

  • Paragraphs Types: Paragraphs are pre-defined sets of fields that are made available to the content editors. These are configured under Structure > Paragraphs Types.

To get started with Paragraphs:

  1. Install the Paragraphs module.
  2. Create Paragraphs types.
  3. Add a Paragraph field to a content type.
  4. Begin creating content and adding paragraphs.

5.1 - 1 Column

The 1 Column paragraph type allows you to create a single-column layout within your content.

Fields

NameMachine nameRequiredDescriptionNotes
Line Abovefield_prfg_display_line_aboveNoDisplay a line above the column.
Columnfield_prgf_1c_columnNoEnter the main content for the single column. This field typically supports rich text.
Paragraph Titlefield_prgf_1c_titleNoEnter a title to display at the top of the 1-column paragraph.
Paragraph Descriptionfield_prgf_1c_descriptionNoEnter a description to display below the paragraph title.

5.2 - 2 Columns

The 2 Columns paragraph type allows you to create a paragraph with two columns for content. This is useful for displaying related information side-by-side or creating visually appealing layouts.

Fields

NameMachine nameRequiredDescriptionNotes
Line Abovefield_prfg_display_line_aboveNoDisplay a horizontal line above the columns.
Left Columnfield_prgf_2c_leftNoContent for the left column.Supports text, images, and other embedded content.
Right Columnfield_prgf_2c_rightNoContent for the right column.Supports text, images, and other embedded content.

5.3 - 3 Columns

The 3 Columns paragraph type allows you to create a paragraph with three distinct columns of content. This paragraph type is useful for displaying information in a structured and visually appealing manner.

Fields

NameMachine nameRequiredDescriptionNotes
Line Abovefield_prfg_display_line_aboveNoDisplay a line above the column.
Left Columnfield_prgf_3c_leftNoEnter the content for the left column.
Center Columnfield_prgf_3c_centerNoEnter the content for the center column.
Right Columnfield_prgf_3c_rightNoEnter the content for the right column.
Paragraph Titlefield_prgf_titleNoEnter a title to display at the top of the 3 columns paragraph.

5.4 - 4 Columns

The 4 Columns paragraph type allows you to create a content block with four columns of information. This is useful for displaying related content side-by-side.

Fields

NameMachine nameRequiredDescriptionNotes
Line Abovefield_prfg_display_line_aboveNoDisplay a line above the column.Use this to visually separate this paragraph from the content above it.
First Columnfield_prgf_4c_1stNoEnter the content for the first column.Supports text, images, and other embedded content.
Second Columnfield_prgf_4c_2ndNoEnter the content for the second column.Supports text, images, and other embedded content.
Third Columnfield_prgf_4c_3rdNoEnter the content for the third column.Supports text, images, and other embedded content.
Fourth Columnfield_prgf_4c_4thNoEnter the content for the fourth column.Supports text, images, and other embedded content.
Buttonfield_prgf_4c_buttonNoButton with link to display under the 4-column paragraph.Use this to add a call to action or link to more information related to the content.
Paragraph Titlefield_prgf_titleNoEnter a title to display at the top of the 4-column paragraph.This provides a clear heading for the entire paragraph.
Paragraph Descriptionfield_prgf_descriptionNoEnter a description to display under the 4-column paragraph title.Use this to provide context or an overview of the content within the four columns.

5.5 - All Amenities

This paragraph displays a list of amenities, typically in a table view. It’s useful for showcasing available features or services.

Fields

NameMachine nameRequiredDescription
All amenitiesfield_field_prgf_amnts_viewNoPredefined reference to a view that displays all amenities. Configure this view to control which amenities are shown and how they are formatted.
Titlefield_prgf_titleNoEnter the title that will be displayed at the top of the paragraph. This provides context for the list of amenities.

Important Considerations:

  • View Configuration: The “All amenities” field relies on a pre-existing view. Ensure this view is properly configured to display the desired amenity information.
  • Paragraph Usage: This paragraph type is generally intended for use within a larger page structure, like a landing page or a branch details page.
  • Alternative: Consider using “Branch Amenities” block if you want to show the amenities for the current branch.

5.6 - Banner

The Banner paragraph type is used to display eye-catching content, often at the top of a page or section. It typically includes a headline, description, image, and a call to action link.

Fields

NameMachine nameRequiredDescriptionNotes
Headlinefield_prgf_headlineYesThe main heading of the banner. This should be concise and attention-grabbing.Plain text, maximum 255 characters
Colorfield_prgf_colorYesA reference field that allows you to select a color from the “Color” vocabulary. This color is often used as a background or accent color for the banner.Choose a term from the “Color” vocabulary
Imagefield_prgf_imageNoAn entity reference to a media image. This image should be visually appealing and relevant to the banner’s content.Single value
Descriptionfield_prgf_descriptionNoA WYSIWYG field where you can add descriptive text to the banner. Use this to provide more context or details about the banner’s topic. It is recommended to avoid using a summary for this field.
Linkfield_prgf_linkNoA link field that stores both internal and external links. Use this to direct users to relevant pages or resources. This can be a call to action.Use for internal and external links

5.7 - Blog Posts Listing

This paragraph is dynamic and renders the latest blog posts, utilizing exposed filters for enhanced content discovery. It’s based on the openy_prgf_blog_listing module.

Key Features:

  • Filtering: Allows users to filter blog posts based on:
    • Location
    • Category
    • Text (Search Keywords)
  • Sticky at Top: Supports the “sticky at top” functionality to highlight important posts.
  • Ordering: Orders blog posts by published date, displaying the newest posts first.
  • Views Integration: Leverages Drupal’s Views module for flexible content display and filtering. The exposed filters are part of the View configuration.
  • Infinite Scroll: Supports the views_infinite_scroll module for a better user experience.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block that provides the blog post listing. It should have a default value and ideally be hidden in the form display to prevent accidental modification. The view should be configured to use exposed filters for Location, Category, and Text.

Module Dependencies:

  • openy_prgf_blog_listing
  • views_infinite_scroll

Related Paragraphs:

5.8 - Branches Popup (All)

This dynamic paragraph renders the locations selection popup, based on the current node. It’s typically used to allow users to select a branch or location from a popup window. This selection can then influence other elements on the page, such as filtering schedules or classes.

Relates to:

  • [Schedule search list](Schedule search list.md)
  • [Classes Listing](Classes Listing.md)

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block that provides the location selection options. It should have a default value configured and is typically hidden in the form display to prevent direct user modification. This field is the key to connecting the paragraph to the actual location data.

Usage

This paragraph is often used in conjunction with other paragraphs and blocks to create a location-aware experience. For example, it might be used on a page with a schedule search to allow users to filter the schedule by location.

The openy_branch_selector module is often used to provide the functionality for selecting and saving a user’s preferred branch. The selected branch can then be used to pre-populate location filters and customize the user’s experience.

The specific appearance and behavior of the popup are determined by the view/block referenced in the field_prgf_block field. This allows for a high degree of customization to match the specific needs of the site.

5.9 - Branches Popup (Class)

This dynamic paragraph renders the location selection popup based on the current node. It’s typically used to allow users to select a location from a list of branches.

Relates to:

  • [Class Sessions](Class Sessions.md)
  • [Class Location](Class Location.md)

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to a View or a Block plugin. This field should have a default value configured and is typically hidden in the form display for content editors.

5.10 - Categories Listing

This is a dynamic paragraph that renders all published categories associated with the current program page.

It typically includes a “sticky at the top” option and orders items based on their published date (newest at the top).

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. This field should have a default value and is typically hidden in the form display.

Note: The Categories Listing paragraph type displays taxonomy terms. Taxonomy terms are categorized under: plain text, number, reference, date and time and general.

5.11 - Class Location

This dynamic paragraph renders the location’s “class location” view mode based on the location URL query parameter with a valid ID. This paragraph is typically used on class pages to display location-specific information.

Context:

  • This paragraph is used to display location information, such as address, phone number, and hours, for a specific class.
  • The “class location” view mode defines how the location information is displayed.

Relates to [Branches Popup (Class)](Branches Popup (Class).md).

  • When the page has a location parameter, the Branches Popup paragraph will make an “Edit” link on this paragraph visible. That link triggers the Branches Popup to open, allowing the user to select a different location.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. Should have a default value and should be hidden in the form display. This field determines which block is rendered within the paragraph. The referenced block provides the actual content and formatting for the location information. Consider using a view block to display dynamic content related to the location.

5.12 - Class Sessions

This dynamic paragraph renders class session instances based on the URL query parameter location with a valid ID.

Relates to [Branches Popup (Class)](Branches Popup (Class).md).

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. Should have a default value and should be hidden in form display.

Displayed Table

The following fields are displayed in a table format:

  • Location: Displayed unless &location=% is present in the URL, in which case it is hidden.
  • Time + Date
  • Registration: A link to the registration page.
  • Details:
    • Online registration information
    • Ticket requirement status
    • Membership eligibility
  • Age: Minimum and maximum age range for the class.

Use Cases

These use cases describe the behavior of the Class Sessions paragraph in different scenarios, specifically regarding location filtering.

Class Page WITHOUT Location Popup

Use case 3: Class page WITHOUT location popup

Location Specified in URL
  1. 1 Location in specified URL

    • When a Class page without a location popup is opened.
    • And the URL contains location=%.
    • The system skips any existing cookie values.
    • The class session results are filtered based on the location specified in the URL.
    • A location teaser is displayed in the sidebar.
Preferred Branch Empty or Selected, No Location in URL
  1. 2 Preferred branch is empty and no location in URL or Preferred branch is selected and no location in URL

    • When a Class page without a location popup is opened.
    • And either:
      • No preferred branch is selected.
      • A preferred branch is selected, but the URL does not contain location=%.
    • The class session results include all branches.
    • “All locations…” is displayed in the sidebar.

Class Page WITH Location Popup

Use case 4: Class page WITH location popup

Location Specified in URL
  1. 1 Location in specified URL

    • When a Class page with a location popup is opened.
    • And the URL contains location=%.
    • The system skips any existing cookie values.
    • The class session results are filtered based on the location specified in the URL.
    • A location teaser is displayed in the sidebar.
    • The location teaser in the sidebar includes an “Edit” link that opens the location popup.
Preferred Branch Empty or Selected, No Location in URL
  1. 2 Preferred branch is empty and no location in URL or Preferred branch is selected and no location in URL

    • When a Class page with a location popup is opened.
    • And either:
      • No preferred branch is selected.
      • A preferred branch is selected, but the URL does not contain location=%.
    • The class session results include all branches.
    • “All locations…” is displayed in the sidebar.
    • The location popup is displayed, unless only one location is associated with the class.

5.13 - Classes Listing

Displays published classes and provides filtering options.

The Classes Listing paragraph displays all published classes, grouped by activity.

The Classes Listing Filters provide a filter form with the following fields:

  • Location
  • Program
  • Sub-program
  • Activity

Relates to [Branches Popup (All)](Branches Popup (All).md).

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. A default value should be set, and this field should be hidden in the form display.

Use Cases

Use case 1: Classes Listing paragraph on a Program subcategory page WITHOUT location popup paragraph

1.1 Preferred branch is selected and no location in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITHOUT a location popup on the page.
  • And I have a preferred branch set (via cookie).
  • And I don’t have location=% in the URL.
  • Then the filter by location should be pre-defined based on the cookie value.
  • And the results should be filtered accordingly.

1.2 Preferred branch is empty and no location in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITHOUT a location popup on the page.
  • And I don’t have a preferred branch set (cookie is empty).
  • And I don’t have location=% in the URL.
  • Then the filter by location should show “All”.
  • And the results should be shown for all branches.

1.3 Location specified in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITHOUT a location popup on the page.
  • And I have location=% in the URL.
  • Then the preferred branch cookie should be ignored, regardless of its value.
  • And the filter by location should show the branch from the URL.
  • And the results should be filtered accordingly.

Use case 2: Classes Listing paragraph on a Program subcategory page WITH location popup

2.1 Preferred branch is selected and no location in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITH a location popup on the page.
  • And I have a preferred branch set (via cookie).
  • And I don’t have location=% in the URL.
  • Then the location popup shouldn’t be shown.
  • And the filter by location should be pre-defined based on the cookie value.
  • And the results should be filtered accordingly.

2.2 Preferred branch is empty and no location in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITH a location popup on the page.
  • And I don’t have a preferred branch set (cookie is empty).
  • And I don’t have location=% in the URL.
  • Then the filter by location should show “All”.
  • And the results should be shown for all branches.
  • And the location popup should be shown.

2.3 Location specified in URL

  • When I open a Program subcategory page with the Classes Listing paragraph WITH a location popup on the page.
  • And I have location=% in the URL.
  • Then the preferred branch cookie should be ignored, regardless of its value.
  • And the location popup shouldn’t be shown.
  • And the filter by location should show the branch from the URL.
  • And the results should be filtered accordingly.

5.14 - Code

The Code paragraph type allows you to embed code snippets, or even embed content from other websites such as YouTube videos. It leverages the Code block type for its functionality.

Fields

NameMachine nameRequiredDescription
Codefield_prgf_code_blockYesBlock reference to a Code block. You can create a new Code block directly from the paragraph edit screen, or select an existing one from the library. The Code block will determine the actual content displayed.

5.15 - Featured Blog Posts

The “Featured Blog Posts” paragraph type displays a listing of featured blog posts. It utilizes the openy_prgf_featured_blogs module.

Fields

NameMachine NameRequiredDescription
Headlinefield_prgf_headlineNoHeadline of the banner. This is a simple text field.
Blog Postsfield_fblog_postsYesMultiple values. A reference field that links to Blog posts. The blog posts are sourced from nodes of the “Blog” content type.

Module Information

  • Module: openy_prgf_featured_blogs
  • Description: Provides a dynamic paragraph that renders a featured blog posts listing.
  • Dependencies:
    • drupal:field
    • drupal:node
    • openy_node_blog:openy_node_blog
    • openy_prgf:openy_prgf
    • paragraphs:paragraphs

Templates

The appearance of this paragraph can be customized via Twig templates. The following templates are used by default, and can be overridden in your theme:

  • themes/contrib/openy_rose/templates/paragraph/paragraph--featured-blogs--default.html.twig
  • themes/contrib/openy_lily/templates/paragraphs/paragraph--featured-blogs--default.html.twig
  • themes/contrib/openy_carnation/templates/paragraph/paragraph--featured-blogs--default.html.twig

5.16 - Featured Content

The Featured Content paragraph type is used to create dynamic listings of content with various grid layouts. It’s part of the openy_prgf_featured_content module.

Fields

NameMachine nameRequiredDescription
Headlinefield_prgf_headlineNoHeadline of the featured content.
Descriptionfield_prgf_descriptionNoText area for the description/body with WYSIWYG, without summary.
Linkfield_prgf_linkNoLink field that supports internal and external URLs.
Stylefield_prgf_grid_styleYesSelect list defining the number of items per row: 2: 2 items, 3: 3 items, 4: 4 items.
Column descriptionfield_prgf_fc_clm_descriptionNoMultiple values. Text area for column descriptions with WYSIWYG, without summary.

5.17 - Featured Highlights

The Featured Highlights paragraph type provides a way to display specific content blocks in a grid layout, with options for 2, 3, or 4 blocks per row.

Fields

NameMachine nameRequiredDescription
Titlefield_prgf_titleNoOptional paragraph title displayed above the grid of blocks.
Stylefield_prgf_grid_styleYesDetermines the number of blocks displayed per row. A select list with the following values: 2: 2 items per row, 3: 3 items per row, 4: 4 items per row.
Featured Highlights blockfield_prgf_block_ref_unlimYesReferences blocks to be displayed in the grid. You can create a new block or select an existing block. Allowed block types: Featured Highlight Block, Basic Block, Simple Block, and Date block. The “Featured Highlight Block” provides a title, link, image, and description for each item.

5.18 - Featured News Posts

The Featured News Posts paragraph type displays a set of news articles. It allows content editors to highlight timely and relevant news items on a page. This paragraph leverages the openy_prgf_featured_news module.

Fields

NameMachine nameRequiredDescription
Headlinefield_prgf_headlineNoHeadline for the featured news section. This will appear above the linked news posts.
News Postsfield_fnews_postsYesMultiple values. References existing News posts (nodes of type “News”). The referenced news posts will be displayed in this section.

Usage

  1. When creating or editing a page or content type that supports paragraphs, select the “Featured News Posts” paragraph type.
  2. Enter a “Headline” for the section (optional).
  3. In the “News Posts” field, select one or more existing News posts. Use the autocomplete functionality to search for news posts by title.
  4. Save the paragraph and the parent content.

The selected news posts will now be displayed on the page, under the specified headline. The display of each news post will use the “teaser” view mode.

5.19 - Gallery

The Gallery paragraph type is used to display a collection of images, often with accompanying text and links.

Fields

NameMachine NameRequiredDescription
Headlinefield_prgf_headlineYesHeadline of the gallery. Plain text.
Descriptionfield_prgf_descriptionNoWYSIWYG field without summary. Allows for rich text formatting to describe the gallery.
Linkfield_prgf_linkNoLink field for internal and external URLs. Can be used to link to more information.
Imagesfield_prgf_imagesNoEntity reference to media images. Supports multiple images in the gallery.

5.20 - Grid columns

This paragraph type is used for the field_grid_columns within the Grid Content paragraph. It defines the structure and fields for individual columns within a grid layout.

Fields

NameMachine nameRequiredDescription
Descriptionfield_prgf_grid_clm_descriptionNoTextarea for the column’s description or body content. Supports WYSIWYG editing, but does not include a summary field.
Headlinefield_prgf_clm_headlineNoHeadline for the grid content within the column.
Iconfield_prgf_clm_iconNoEntity reference to a media asset, typically an image. Recommended to allow uploading of SVGs for scalability.
Icon classfield_prgf_clm_classNoInput field for adding Font Awesome icon classes (e.g., flag, car, info). Overrides the image specified in the Icon field.
Linkfield_prgf_clm_linkNoLink field that supports both internal and external URLs.

5.21 - Grid Content

The Grid Content paragraph type is used to create grid layouts within stories.

Fields

NameMachine nameRequiredDescription
Stylefield_prgf_grid_styleYesSelect list with the following values: 2: 2 items per row, 3: 3 items per row, 4: 4 items per row. This determines the number of columns in the grid.
Contentfield_grid_columnsParagraphGrid columns. This field references the Grid columns paragraph type, allowing you to add individual columns to the grid.
Descriptionfield_prgf_grid_clm_descriptionNoTextarea for the column description/body. Supports WYSIWYG editing, but without a summary option.
Headlinefield_prgf_clm_headlineNoHeadline for the grid content column.
Iconfield_prgf_clm_iconNoEntity reference to a media asset, typically an SVG image. Allows uploading of new SVG files.
Icon classfield_prgf_clm_classNoInput field for adding Font Awesome icon classes (e.g., flag, car, info). This will override the image Icon.
Linkfield_prgf_clm_linkNoLink field that supports both internal and external URLs.

5.22 - Group Schedules

This is a dynamic paragraph that renders group schedules from the GroupEx Pro system. It leverages the openy_prgf_group_schedules module. This paragraph type allows content editors to embed schedules directly within content, providing users with up-to-date class and activity information.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block that displays the GroupEx Pro schedule. A default value should be set and is configurable in the form display.

5.23 - Latest Blog Posts

This paragraph is a dynamic element that displays the most recent blog posts. It’s designed to showcase content that is promoted to the front page.

Key features:

  • Sticky at the top: This ensures the most important blog posts remain visible.
  • Order: Items are ordered by published date, with the newest posts appearing first.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesThis field holds a block reference to the view/block that provides the blog post listing. It is intended to have a default value set and is typically hidden from the form display to simplify content creation and prevent accidental modification of the listing source.

5.24 - Latest Blog Posts (Branch)

This dynamic paragraph renders the latest blog posts associated with a specific branch. It displays posts in chronological order, with the newest posts at the top, and utilizes the “sticky at the top” option to highlight important content.

Functionality

This paragraph type automatically filters and displays blog posts based on the branch context in which it is placed. For example, if this paragraph is added to a “Downtown YMCA” branch page, it will only display blog posts associated with the “Downtown YMCA” branch. If placed on a non-branch page, only the headline will be visible.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. This field should have a default value and be hidden in the form display. It determines the view or block used to render the blog posts.

5.25 - Latest Blog Posts (Camp)

This paragraph dynamically renders the latest blog posts associated with a specific camp. It displays posts in reverse chronological order (newest first).

Functionality

  • Filtering: Displays only blog posts associated with the current camp. If placed on a non-camp page, only the title will render.
  • Ordering: Blog posts are ordered by published date, with the newest posts appearing at the top.
  • Styling: Blog posts are displayed in a card format.

Usage

This paragraph is typically used in the content area or bottom area of a Camp page to showcase relevant blog content. To use it, select “Latest Blog Posts (Camp)” from the paragraphs dropdown, and enter a header title.

Supported Content Types

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. This field should have a default value and is typically hidden in the form display.

5.26 - Latest News Posts

This paragraph type dynamically renders the latest news posts. It is typically used to display news promoted to the front page, ordering them by published date with the newest at the top. The “sticky at the top” option can be used to highlight certain posts.

This paragraph leverages a block reference to display content.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesA block reference to a view or block. A default value should be configured, and the field should be hidden in the form display. This block will contain the actual list of news posts.

5.27 - Latest News Posts (Branch)

The “Latest News Posts (Branch)” paragraph type is a dynamic element that displays the most recent news articles associated with a specific branch location. It’s designed to highlight timely and relevant information, ensuring that users are presented with the newest content first.

This paragraph automatically orders news items by their published date, with the most recent articles appearing at the top. Additionally, it utilizes a “sticky at the top” feature, which can be configured in the associated View to keep specific, important news posts prominently displayed.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesThis field is a block reference to a View block that lists news posts. The View should have a default value set and is typically hidden in the form display to simplify content editing. The view should filter by branch.

Module Dependencies

This paragraph type is provided by the openy_prgf_news_branch module, which has the following dependencies:

  • field: Part of Drupal core.
  • node: Part of Drupal core.
  • openy_loc_branch: Open Y Branch Location module.
  • openy_node_news: Open Y News Node module.
  • openy_prgf: Open Y Paragraphs base module.
  • paragraphs: Paragraphs module for creating structured content.
  • plugin: Part of Drupal core.
  • user: Part of Drupal core.
  • views: Part of Drupal core.
  • views_infinite_scroll: Views Infinite Scroll module for paginating results.

5.28 - Latest News Posts (Camp)

This paragraph type dynamically renders the latest news posts associated with a specific camp. It displays news articles in reverse chronological order (newest first) and can utilize a “sticky” option to highlight certain posts at the top of the list.

Functionality

This paragraph is designed to be placed on a Camp page. When placed on a Camp page, it will display only news posts associated with that specific camp. If placed on a non-Camp page, it will display only the title (if one is configured).

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block that displays the news posts. A default value should be configured for this field, and it should typically be hidden in the form display to prevent accidental modification.

5.29 - Limited Time Offer

This Paragraph type is used to add a limited-time offer section to a page, often the home page, and is based on a Landing Page Content Type.

Fields

NameMachine nameRequiredDescription
Subtitlefield_lto_subtitleNoEnter the subtitle for the limited-time offer.
Linkfield_lto_linkNoAdd a link for the limited-time offer.
Titlefield_lto_titleYesEnter the title for the limited-time offer.

5.30 - Location finder

This paragraph describes the Location finder paragraph type, which renders a block.

The Location finder block displays locations such as branches, camps, and facilities using a map and associated views. It may also include a filter block. For the Location finder block and Location finder filter block, see the Open Y Map documentation.

Fields

NameMachine nameRequiredDescription
Location finderfield_prgf_location_finderNoBlock reference to the location_finder block. It should have a default value and be hidden in the form display. This block renders the location map.

5.31 - Location Finder Filters

This paragraph renders the Location Finder map with pins and filters. It allows users to filter locations displayed on the map based on tags or other criteria.

Fields

NameMachine nameRequiredDescription
Location Finderfield_prgf_location_finderNoBlock reference to the location_finder block. This field should have a default value and be hidden in the form display to prevent direct user modification.
Tags Stylefield_prgf_lf_tags_styleYesDetermines the style of tags used for the map tags filter. Options include:
- Checkboxes (default)
- Multiselect widget with checkboxes.

5.32 - Membership Information Paragraph

This document describes the “Membership Information” paragraph type, which is used to display membership details such as location, link, fees, and rates. This paragraph is intended for use in the Membership content type.

Fields

NameMachine nameRequiredDescription
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 representing the one-time fee to join.
Monthly Ratefield_mbrshp_monthly_rateNoDollar value representing the recurring monthly membership fee.

5.33 - Microsites Menu

This paragraph type provides a microsites menu block.

Fields

NameMachine nameRequiredDescription
Menu Blockfield_prgf_block_refYesBlock reference to the view/block. Create a new one or select an existing menu block. See the Blocks documentation for more information.
Hide Main Menufield_prgf_ms_menu_hide_menuNoDetermines whether to hide the main website menu when this microsites menu is displayed.

5.34 - News Posts Listing

This dynamic paragraph renders the latest news posts and utilizes exposed filters, allowing users to refine the displayed content.

The available filters are:

  • Location
  • Category
  • Text

The News Posts Listing also features a “sticky at the top” option, ensuring important news remains visible. Items are ordered by published date, with the newest posts appearing first. This functionality relies on the Views module.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the View block. This should have a default value configured in the Paragraph type and hidden in the form display.

5.35 - Program Registration (Daxko)

This paragraph renders the Programs Search Block.

The Programs Search Block provides a form to search programs from Daxko.

Related topics: Daxko

Important: The Daxko and Program Registration (Daxko) configurations must be set up before the Program Registration paragraph will work.

Configuration settings are located at /admin/config/development/daxko/programs-search. You must have the administer daxko permission to configure these settings. See the Daxko settings documentation for more information on configuring the connection to Daxko.

Fields

NameMachine nameRequiredDescription
Program registration blockfield_prgf_reg_blockNoBlock reference to the programs_search_block block. Should have a default value and should be hidden in the form display.

5.36 - Promo Card

The Promo Card is a Paragraph type used to create promotional content. It is often used in sidebars or other secondary areas of a page.

Fields

NameMachine nameRequiredDescription
Titlefield_prgf_titleNoOptional title for the Promo Card. Displayed above the Headline.
Headlinefield_prgf_headlineYesHeadline of the Promo Card. Displayed below the Title.
Descriptionfield_prgf_descriptionNoA WYSIWYG field for the main content of the Promo Card. Does not support summaries.
Linkfield_prgf_linkNoA link field for internal and external links. Supports a call to action.

5.37 - Schedule search form

This paragraph renders the session instance filters for the [Schedule search list](Schedule search list.md). It provides a dynamic form allowing users to filter session instances based on various criteria. The form is rendered using the SchedulesSearchFormBlock plugin, which utilizes the SchedulesSearchForm form.

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. This field stores a reference to a block, typically a view or another block, that provides the search form. It should have a default value and should be hidden in form display. The default value should be the schedules_search_form_block plugin.

Usage

This paragraph is typically used in conjunction with the [Schedule search list](Schedule search list.md) paragraph to provide a filtering mechanism for session instances. It is rendered using the SchedulesSearchFormBlock plugin.

Technical Details

  • Plugin ID: schedules_search_form_block
  • Class: Drupal\openy_schedules\Plugin\Block\SchedulesSearchFormBlock
  • Form: Drupal\openy_schedules\Form\SchedulesSearchForm

5.38 - Schedule search list

This dynamic paragraph renders the session instances based on URL parameters and/or filters from the [Schedule search form](Schedule search form.md).

Relates to [Branches Popup (All)](Branches Popup (All).md).

Fields

NameMachine nameRequiredDescription
Blockfield_prgf_blockYesBlock reference to the view/block. Should have a default value and should be hidden in the form display.

Use Cases

Use Case 1: Schedule search list paragraph on a page WITHOUT a location popup paragraph

1.1 Preferred branch is selected and no location in URL
  • When I open the Schedule search list page WITHOUT a location popup on the page
  • And I have a preferred branch
  • And I don’t have location=% in the URL
  • Then the filter by location should be predefined based on the cookie
  • And the results should be filtered
1.2 Preferred branch is empty and no location in URL
  • When I open the Schedule search list page WITHOUT a location popup on the page
  • And I don’t have a preferred branch
  • And I don’t have location=% in the URL
  • Then the filter by location should show “All”
  • And the results should be shown for all branches
1.3 Location specified in URL
  • When I open the Schedule search list page WITHOUT a location popup on the page
  • And I have location=% in the URL
  • Then we skip the cookie, whether it is empty or exists
  • And the filter by location should show the branch from the URL
  • And the results should be filtered

Use Case 2: Schedule search list paragraph on a page WITH a location popup

2.1 Preferred branch is selected and no location in URL
  • When I open the Schedule search list page WITH a location popup on the page
  • And I have a preferred branch
  • And I don’t have location=% in the URL
  • Then the location popup shouldn’t be shown
  • And the filter by location should be predefined based on the cookie
  • And the results should be filtered
2.2 Preferred branch is empty and no location in URL
  • When I open the Schedule search list page WITH a location popup on the page
  • And I don’t have a preferred branch
  • And I don’t have location=% in the URL
  • Then the filter by location should show “All”
  • And the results should be shown for all branches
  • And the location popup should be shown
2.3 Location specified in URL
  • When I open the Schedule search list page WITH a location popup on the page
  • And I have location=% in the URL
  • Then we skip the cookie, whether it is empty or exists
  • And the location popup shouldn’t be shown
  • And the filter by location should show the branch from the URL
  • And the results should be filtered

5.39 - Secondary Description and Sidebar

The Secondary Description and Sidebar paragraph type is designed for content layouts featuring a left column (secondary description) and a right column (sidebar). Both columns utilize blocks for flexible content placement.

Fields

NameMachine NameRequiredDescription
Left Columnfield_prgf_left_column_blockNoA block reference field for the left column, often used for a secondary description. You can select from existing blocks or create a new one. Supported block types: Basic Block, Code Block, Date Block, or Simple Block.
Right Columnfield_prgf_right_column_blockNoA block reference field for the right column, typically used as a sidebar. You can select from existing blocks or create a new one. Supported block types: Basic Block, Code Block, Date Block, or Simple Block.

Note: Blocks provide a modular way to organize and display content within the columns. Consider using Basic Blocks for standard text and media, Code Blocks for displaying code snippets, Date Blocks for event dates, and Simple Blocks for streamlined content elements. You can create these blocks in the “Blocks” section of the administrative interface. The “Block Content” module allows you to manage block types and content blocks. The block description is an identification name for a block, which is shown in the administrative interface and not displayed on the site. The block title is the heading that is optionally shown to site visitors when the block is placed in a region.

5.40 - Session Time

The Session Time paragraph is used within the Session content type to define the schedule for a session. It allows you to specify the date and time range, as well as the days of the week the session repeats.

Fields

NameMachine nameRequiredDescription
Date & Timefield_session_time_dateNoThis field uses the Datetime Range module to create a date/time field with start and end date/time options. This defines the period when the session is active. For example, January 1, 2024, to January 1, 2025.
Daysfield_session_time_daysNoCheckboxes to select the days of the week the session repeats. Available options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday. If a date range and a day are selected, the session will occur on that day of the week within the specified date range.
Session time overridefield_session_time_overrideNoUse this field to override the session time to text.

5.41 - Simple Content

The Simple Content paragraph type is used for adding formatted text to pages. It provides a WYSIWYG editor for rich text input.

Fields

NameMachine nameRequiredDescription
Contentfield_prgf_descriptionYesWYSIWYG editor for formatted text content.

5.42 - Small Banner

The Small Banner paragraph type is used to display banner content in a compact format.

Fields

NameMachine nameRequiredDescriptionNotes
Colorfield_prgf_colorYesReference field for choosing a color from the “Color” vocabulary.Used for the banner’s background color.
Headlinefield_prgf_headlineYesHeadline of the Small Banner.Plain text, maximum 255 characters.
Imagefield_prgf_imageNoEntity reference to a media image.Single value. Recommended image dimensions: [TBD].
Descriptionfield_prgf_descriptionNoWYSIWYG field for the banner’s description, supports rich text formatting.No summary option. Use sparingly to maintain a clean banner appearance.

5.43 - Social Post Listing

This paragraph type renders the latest social posts imported from social networks and displays them in a masonry grid. It leverages a View block to select and format the posts.

Fields

NameMachine nameRequiredDescription
Titlefield_prgrf_sl_titleNoTitle for the social posts block. This is a plain text field.
Descriptionfield_prgrf_sl_descriptionNoDescription for the social posts block. This field supports longer text and can be used for introductory content.
Social Listfield_prgrf_sl_blockNoReference to a View block. This block is configured to select social posts and display them.

Details about the Social List (field_prgrf_sl_block) View Block:

  • View: social_posts_view
  • Block Display: social_posts_block
  • This view selects nodes of the social_post content type.
  • The view provides an administrative interface at admin/social-posts to manage social posts.
  • The view displays the platform, ID, post content, and posted date for each social post.

5.44 - Social Share Icons

This paragraph type was used to add social media share icons, leveraging the AddThis service.

Important: The AddThis service has been deprecated as of May 31, 2023. This paragraph type no longer functions. See Using AddToAny for its replacement.

See more How to configure AddThis

Fields

NameMachine nameRequiredDescriptionNotes
Titlefield_prgrf_sl_titleNoBlock title.You can add text here if your block needs a title.
Descriptionfield_prgrf_sl_descriptionNoBlock Description.You can add text here if your block needs a description.
Blockfield_prgrf_sl_blockYesSelect a social sharing plugin.

5.45 - Story Card

The Story Card is a Paragraph type designed for use in sidebars, featuring a title, headline, and a link that turns the entire card into a call to action. This paragraph type is commonly used to highlight specific information or direct users to related content.

Fields

NameMachine nameRequiredDescription
Titlefield_prgf_titleNoTitle of the Story Card.
Headlinefield_prgf_headlineYesHeadline of the Story Card. A quotation mark will be displayed to the left of your headline in the Lily and Rose themes.
Linkfield_prgf_linkNoLink field that stores an internal or external URL. The entire card becomes the link, so use link text that encourages users to click.

Usage Notes

  • Themes: The Story Card Paragraph renders with specific styling in the Lily and Rose themes, including a border. It may not have the same visual emphasis in other themes like Carnation.

  • Best Practices: To enhance usability, consider adding a > or other special character to the link text to visually indicate it’s a clickable link.

  • Content Types: Story Cards are primarily designed for use in the sidebar region of content types, including:

    • Landing Page
    • News Post
    • Blog Post
    • Facility
    • Program
    • Program Subcategory

Advanced

  • Custom CSS: To disable the quotation mark in the headline area (Lily and Rose), use the following CSS:

    .story-card .quote svg {
      display: none;
    }
    

5.46 - Teaser

The Teaser paragraph type is used to create visually engaging previews of content, often linking to more detailed information. It typically includes a title, image, short description, and a link.

Fields

NameMachine nameRequiredDescription
Titlefield_prgf_titleNoThe title of the teaser. This is often displayed prominently.
Imagefield_prgf_imageNoA reference to a media image. This field accepts a single image to visually represent the teaser content.
Descriptionfield_prgf_descriptionNoA WYSIWYG field (What You See Is What You Get) allowing formatted text input for a brief description of the teaser content. A summary is not supported for this field.
Linkfield_prgf_linkNoA link field that stores internal and external URLs. This allows the teaser to link to other content within the site or external resources.

Usage

Teaser paragraphs are commonly used on landing pages, content hubs, and in listing pages to promote specific articles, products, or sections of a website. They provide a concise overview and encourage users to explore further. The field_prgf_link will take the user to the page that the Teaser is promoting.

Best Practices

  • Image Dimensions: Use appropriately sized images to ensure optimal display and page load times.
  • Concise Descriptions: Keep descriptions brief and focused on highlighting the key benefits or features of the linked content.
  • Clear Call to Action: The link text should clearly indicate the destination and encourage user interaction (e.g., “Read More,” “Learn More,” “View Details”).

5.47 - Webform

This is a paragraph type used for embedding webforms within content. It allows you to add existing webforms to a page.

Prerequisites

  • You must have already created your webform using the Webform module before embedding it. This paragraph type does not create a new webform.
  • Consider reviewing the Drupal Webform Tutorials (by Jacob Rockowitz) for comprehensive guidance on creating and managing webforms.

How to Use the Webform Paragraph

  1. Add the Webform Paragraph: Select “Webform” from the available paragraph types when editing a content item.

  2. Select the Webform: Choose the desired webform from the “Embedded Webform” field. This field displays a list of available webforms created using the Webform module.

    Webform paragraph admin fields

  3. Configure Webform Status: Use the “Webform status” field to control the webform’s availability:

    • Open: Allows users to submit the webform.
    • Closed: Prevents new submissions. Existing submissions remain accessible.
    • Scheduled: Set open and close dates for the webform.
  4. Default Webform Submission Data (Optional): The “Default webform submission data (YAML)” field allows you to pre-populate webform fields with default values.

    • Enter YAML code to define the default values.
    • This is useful for providing guidance or setting common values for users.
    • Consult the YAML specification for correct syntax.

Fields

NameMachine nameRequiredDescription
Embedded Webformfield_prgf_webformNoWebform entity reference field. Select the webform you want to embed.
Default webform submission data (YAML)field_prgf_webform_default_dataNoYAML code to pre-populate webform fields with default values.
Webform statusfield_prgf_webform_statusNoControls the availability of the webform. Options: Open, Closed, or Scheduled.

Content Types That Support Webform

6 - Taxonomy

6.1 - Amenities

This vocabulary is used to categorize branch amenities. It is used to tag Branch content.

Machine name: amenities

To manage the available amenities, navigate to: admin/structure/taxonomy/manage/amenities/overview.

6.2 - Area

The Area vocabulary is used to categorize location areas on the site. This vocabulary is used by the Location Branch and Facility content types to classify the areas they serve. Areas can represent neighborhoods, regions, or any other relevant geographical or logical division.

Machine name: area

Details:

  • This vocabulary is implemented as a taxonomy.
  • Terms within this vocabulary are referenced by the field_location_area field on the Location Branch and Facility content types.
  • Consider using a hierarchical structure for your Area taxonomy to allow for more granular categorization (e.g., Continent > Country > Region > City > Neighborhood).
  • When creating terms, ensure that the names are clear, concise, and representative of the area they describe. Use title case for term names (e.g., “Downtown”).

Related Content Types:

6.3 - Blog Category

This is a vocabulary that will be used for adding blog categories on the site. A vocabulary is a set of taxonomy terms. Taxonomy terms are used to classify website content.

Machine name: blog_category

Definition: A vocabulary for categorizing blog posts. Individual categories are known as terms.

See also:

6.4 - Color

This is a vocabulary used for adding colors. It is typically used as a reference field in other content types, such as Paragraphs.

Machine name: color

Fields

NameMachine nameRequiredDescription
Namedrupal's defaultYesColor name.
Colorfield_colorYesColor selector. This usually provides a color picker interface.

6.5 - Facility Type

This is a vocabulary used for categorizing facilities on the site, specifically for the Facility content type.

Machine name: facility_type

6.6 - Media Tags

This vocabulary is used for adding media tags, which allow you to structure your media assets library. These tags are crucial for organizing, searching, and managing your media files effectively within the system.

Machine name: media_tags

Media tags, when applied correctly, enhance the discoverability and reusability of your media assets. They provide a controlled vocabulary for categorizing different types of media, such as images, videos, audio files, and documents. This categorization enables efficient filtering and sorting within the media library.

Consider the following benefits of using media tags:

  • Improved Search: Users can quickly locate specific media assets by searching for relevant tags.
  • Enhanced Organization: Media assets are neatly categorized, making it easier to browse and manage the library.
  • Content Relationships: Tags can define relationships between different media items, showcasing related content.
  • Workflow Automation: Automate media processing tasks based on assigned tags.

Best Practices

  • Consistency: Use consistent tagging practices across all media assets.
  • Specificity: Choose the most specific tags that accurately describe the media.
  • Relevance: Ensure that tags are relevant to the content of the media asset.
  • Hierarchy: When creating tags, it’s important to have a hierarchy so that filtering and searching can find all of the related tags.

By implementing a well-defined media tagging strategy, you can significantly improve the usability and effectiveness of your media asset library.

6.7 - News Category

This vocabulary is used for categorizing news articles on the site. Taxonomy terms are grouped into vocabularies. This vocabulary provides a predefined set of categories for news content, ensuring consistency and facilitating content organization and filtering.

Machine Name: news_category

Description:

  • Used to classify news content.
  • Terms within this vocabulary can be used to create lists of related articles, filter news feeds, and improve site navigation.
  • Allows content editors to assign one or more categories to each news item.

Usage:

  1. The news_category vocabulary is used with a “Taxonomy term” reference field attached to the “News” content type.
  2. When creating or editing a news article, users can select relevant categories from the available terms in this vocabulary.

See Also: