diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c62bd4d66..e217d653a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,11 +7,13 @@ jobs: phpunit: name: PHPUnit Coverage Tests runs-on: ubuntu-latest + strategy: + fail-fast: false container: - image: pookmish/drupal8ci:latest + image: pookmish/drupal8ci:php8.3 services: mysql: - image: mysql:5.7 + image: mysql:8.0 env: MYSQL_DATABASE: drupal MYSQL_USER: drupal @@ -34,22 +36,58 @@ jobs: uses: actions/upload-artifact@v4 if: failure() with: - name: unit-tests-results + name: d10-unit-tests-results path: /var/www/html/artifacts + +# phpunit_d11: +# name: PHPUnit Coverage Tests Drupal 11 +# runs-on: ubuntu-latest +# container: +# image: pookmish/drupal8ci:php8.3 +# services: +# mysql: +# image: mysql:8.0 +# env: +# MYSQL_DATABASE: drupal +# MYSQL_USER: drupal +# MYSQL_PASSWORD: drupal +# MYSQL_ROOT_PASSWORD: drupal +# ports: +# - 33306:3306 +# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 +# steps: +# - uses: actions/checkout@v4 +# with: +# path: project +# - name: Run tests +# env: +# STANFORD_ENCRYPT: ${{ secrets.STANFORD_ENCRYPT }} +# run: | +# composer global require su-sws/stanford-caravan:10.x-dev +# ~/.config/composer/vendor/bin/sws-caravan codeception /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --suites=acceptance +# - name: Save Test Results +# uses: actions/upload-artifact@v4 +# if: always() +# with: +# name: d11-unit-tests-results +# path: /var/www/html/artifacts + acceptance: name: Codeception Acceptance Tests runs-on: ubuntu-latest + strategy: + fail-fast: false env: DRUPAL_DATABASE_NAME: drupal DRUPAL_DATABASE_USERNAME: drupal DRUPAL_DATABASE_PASSWORD: drupal DRUPAL_DATABASE_HOST: mysql container: - image: pookmish/drupal8ci:latest + image: pookmish/drupal8ci:php8.3 options: '--network-alias drupal8ci' services: mysql: - image: mysql:5.7 + image: mysql:8.0 env: MYSQL_DATABASE: drupal MYSQL_USER: drupal @@ -72,25 +110,27 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: acceptance-tests-results + name: d10-acceptance-tests-results path: /var/www/html/artifacts functional: name: Codeception Functional Tests runs-on: ubuntu-latest + strategy: + fail-fast: false env: DRUPAL_DATABASE_NAME: drupal DRUPAL_DATABASE_USERNAME: drupal DRUPAL_DATABASE_PASSWORD: drupal DRUPAL_DATABASE_HOST: mysql container: - image: pookmish/drupal8ci:latest + image: pookmish/drupal8ci:php8.3 options: '--network-alias=drupal8ci' services: selenium: image: selenium/standalone-chrome:115.0 options: '--shm-size="2g"' mysql: - image: mysql:5.7 + image: mysql:8.0 env: MYSQL_DATABASE: drupal MYSQL_USER: drupal @@ -113,5 +153,83 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: functional-tests-results + name: d10-functional-tests-results path: /var/www/html/artifacts + +# acceptance_d11: +# name: Codeception Acceptance Tests Drupal 11 +# runs-on: ubuntu-latest +# strategy: +# fail-fast: false +# env: +# DRUPAL_DATABASE_NAME: drupal +# DRUPAL_DATABASE_USERNAME: drupal +# DRUPAL_DATABASE_PASSWORD: drupal +# DRUPAL_DATABASE_HOST: mysql +# container: +# image: pookmish/drupal8ci:php8.3 +# options: '--network-alias drupal8ci' +# services: +# mysql: +# image: mysql:8.0 +# env: +# MYSQL_DATABASE: drupal +# MYSQL_USER: drupal +# MYSQL_PASSWORD: drupal +# MYSQL_ROOT_PASSWORD: drupal +# ports: +# - 33306:3306 +# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 +# steps: +# - uses: actions/checkout@v4 +# with: +# path: project +# - name: Run tests +# run: | +# composer global require su-sws/stanford-caravan:11.x-dev +# ~/.config/composer/vendor/bin/sws-caravan codeception /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --suites=acceptance +# - name: Save Test Results +# uses: actions/upload-artifact@v4 +# if: always() +# with: +# name: d11-acceptance-tests-results +# path: /var/www/html/artifacts +# functional_d11: +# name: Codeception Functional Tests Drupal 11 +# runs-on: ubuntu-latest +# env: +# DRUPAL_DATABASE_NAME: drupal +# DRUPAL_DATABASE_USERNAME: drupal +# DRUPAL_DATABASE_PASSWORD: drupal +# DRUPAL_DATABASE_HOST: mysql +# container: +# image: pookmish/drupal8ci:php8.3 +# options: '--network-alias=drupal8ci' +# services: +# selenium: +# image: selenium/standalone-chrome +# options: '--shm-size="2g"' +# mysql: +# image: mysql:8.0 +# env: +# MYSQL_DATABASE: drupal +# MYSQL_USER: drupal +# MYSQL_PASSWORD: drupal +# MYSQL_ROOT_PASSWORD: drupal +# ports: +# - 33306:3306 +# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 +# steps: +# - uses: actions/checkout@v4 +# with: +# path: project +# - name: Run tests +# run: | +# composer global require su-sws/stanford-caravan:11.x-dev +# ~/.config/composer/vendor/bin/sws-caravan codeception /var/www/html --extension-dir=$GITHUB_WORKSPACE/project --suites=functional +# - name: Save Test Results +# uses: actions/upload-artifact@v4 +# if: always() +# with: +# name: d11-functional-tests-results +# path: /var/www/html/artifacts diff --git a/.gitignore b/.gitignore index 55cbbe175..e5ba76ee3 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ deployment_identifier bin/* tmp reports +.yarn/ # OS X .DS_Store diff --git a/composer.json b/composer.json index 835b5ae4f..ae4277139 100644 --- a/composer.json +++ b/composer.json @@ -1,88 +1,201 @@ { "name": "su-soe/engineering_profile", - "description": "Installation Profile for the Stanford Webservice's Jumpstart Product.", - "type": "drupal-custom-profile", - "license": "GPL-2.0-or-later", - "minimum-stability": "dev", - "prefer-stable": true, - "repositories": [ - { - "type": "composer", - "url": "https://packages.drupal.org/8" - }, - { - "type": "package", - "package": { - "name": "citation-style-language/locales", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/citation-style-language/locales.git", - "reference": "master" + "description": "Installation Profile for the Stanford Webservice's Jumpstart Product.", + "type": "drupal-custom-profile", + "license": "GPL-2.0-or-later", + "minimum-stability": "dev", + "prefer-stable": true, + "repositories": [ + { + "type": "composer", + "url": "https://packages.drupal.org/8" + }, + { + "type": "package", + "package": { + "name": "citation-style-language/locales", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/citation-style-language/locales.git", + "reference": "master" + } + } + }, + { + "type": "package", + "package": { + "name": "citation-style-language/styles-distribution", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/citation-style-language/styles-distribution.git", + "reference": "master" + } + } } - } + ], + "require": { + "ext-imagick": "*", + "acquia/drupal-environment-detector": "^1.0", + "citation-style-language/locales": "1.0.0", + "citation-style-language/styles-distribution": "1.0.0", + "composer/installers": ">=1.2", + "drupal/address": "^2.0", + "drupal/admin_toolbar": "^3.1", + "drupal/allowed_formats": "^3.0", + "drupal/auto_entitylabel": "^3.0@beta", + "drupal/change_labels": "^1.0", + "drupal/chosen": "^4.0", + "drupal/ckeditor5_icons": "^1.1", + "drupal/colorbox": "^2.0", + "drupal/components": "^3.0", + "drupal/conditional_fields": "^4.0", + "drupal/config_filter": "^2.7", + "drupal/config_ignore": "^3.0", + "drupal/config_pages": "^2.6", + "drupal/config_pages_overrides": "^2.0", + "drupal/config_readonly": "^1.0@beta", + "drupal/config_split": "^2.0", + "drupal/confirm_leave": "^1.0@beta", + "drupal/content_lock": "^2.2", + "drupal/core": "~10.4.0", + "drupal/cshs": "^4.0", + "drupal/default_content": "^2.0@alpha", + "drupal/diff": "^1.3", + "drupal/display_field_copy": "^2.0.", + "drupal/domain_301_redirect": "^2.0", + "drupal/ds": "^3.3", + "drupal/editoria11y": "^2.0", + "drupal/element_class_formatter": "^2.0@beta", + "drupal/encrypt": "^3.0", + "drupal/environment_indicator": "^4.0", + "drupal/extlink": "^1.3", + "drupal/fast_404_generator": "^1.0", + "drupal/field_encrypt": "^3.0", + "drupal/field_formatter_class": "^1.5", + "drupal/field_group": "^3.0@rc", + "drupal/field_label": "^1.4", + "drupal/field_permissions": "^1.0@RC", + "drupal/field_validation": "^1.0-alpha", + "drupal/file_mdm": "^2.4 || ^3.0", + "drupal/flat_taxonomy": "^2.0", + "drupal/fontawesome": "^2.19", + "drupal/google_analytics": "^4.0", + "drupal/google_tag": "^2.0", + "drupal/graphql_compose": "^2.0", + "drupal/hook_event_dispatcher": "^4.0@beta", + "drupal/image_effects": "^4.0", + "drupal/imagecache_external": "^3.0", + "drupal/imagemagick": "^4.0", + "drupal/jquery_ui_draggable": "^2.0", + "drupal/jsonapi_extras": "^3.20", + "drupal/jsonapi_hypermedia": "^1.9", + "drupal/jsonapi_image_styles": "^3.0", + "drupal/jsonapi_menu_items": "^1.2", + "drupal/jsonapi_search_api": "^1.0@RC", + "drupal/jsonapi_views": "^1.1", + "drupal/key": "^1.15", + "drupal/layout_builder_modal": "^2.0", + "drupal/layout_builder_restrictions": "^3.0", + "drupal/layout_library": "^1.0-beta1", + "drupal/layout_paragraphs": "^2.0", + "drupal/link_attributes": "^2.0", + "drupal/link_title_formatter": "^2.0", + "drupal/linkit": "^7.0", + "drupal/markup": "^2.0", + "drupal/mathjax": "^4.0", + "drupal/maxlength": "^3.1", + "drupal/menu_admin_per_menu": "^1.0", + "drupal/menu_block": "^1.10", + "drupal/menu_link_weight": "^2.0@alpha", + "drupal/metatag": "^2.0", + "drupal/oembed_lazyload": "^2.0", + "drupal/name": "^1.0@RC", + "drupal/next": "^1.2", + "drupal/nobots": "^1.0", + "drupal/node_revision_delete": "^2.0", + "drupal/page_manager": "^4.0@beta", + "drupal/paragraphs": "^1.11", + "drupal/paragraphs_edit": "^3.0", + "drupal/paranoia": "^1.0@alpha", + "drupal/path_redirect_import": "^2.0", + "drupal/pathauto": "^1.6", + "drupal/pdb": "2.0.0", + "drupal/printable": "^3.0", + "drupal/rabbit_hole": "^1.0@beta", + "drupal/real_aes": "^2.4", + "drupal/redirect": "^1.0-beta1", + "drupal/responsive_tables_filter": "^2.0", + "drupal/role_delegation": "^1.0@beta", + "drupal/scheduler": "^2.0", + "drupal/search_api": "^1.19", + "drupal/search_api_algolia": "^3.0@beta", + "drupal/seckit": "^2.0", + "drupal/shs": "^2.0@RC", + "drupal/smart_date": "^4.0", + "drupal/smart_trim": "^2.0", + "drupal/taxonomy_entity_index": "^1.8", + "drupal/taxonomy_menu": "^3.5", + "drupal/token_or": "^2.0", + "drupal/ui_patterns": "^1.0", + "drupal/ultimate_cron": "^2.0@beta", + "drupal/view_unpublished": "^1.0", + "drupal/viewfield": "^3.0@beta", + "drupal/views_autosubmit": "^1.4", + "drupal/views_block_filter_block": "^2.0@beta", + "drupal/views_bulk_edit": "^3.0", + "drupal/views_contextual_filters_or": "^1.3", + "drupal/views_custom_cache_tag": "^1.2", + "drupal/views_data_export": "^1.0", + "drupal/views_infinite_scroll": "^2.0", + "drupal/views_taxonomy_term_name_depth": "^7.0", + "drupal/webp": "^1.0@beta", + "drupal/xmlsitemap": "^1.0", + "harvesthq/chosen": "^1.8", + "onlyextart/colorbox": "dev-master#e58476becbc89dc671093d1bcd9f99b2167fa8f7", + "sainsburys/guzzle-oauth2-plugin": "^3.0", + "seboettg/citeproc-php": "2.4.1", + "su-sws/ckeditor5_plugins": "^1.0", + "su-sws/drupal-patches": "^10.0", + "su-sws/react_paragraphs": "^8.2", + "su-sws/stanford_actions": "^8.2", + "su-sws/stanford_fields": "^8.2", + "su-sws/stanford_media": "^11.0", + "su-sws/stanford_migrate": "^8.3", + "su-sws/stanford_profile_helper": "^9.8", + "su-sws/stanford_samlauth": "^1.0", + "su-sws/stanford_syndication": "^1.0" }, - { - "type": "package", - "package": { - "name": "citation-style-language/styles-distribution", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/citation-style-language/styles-distribution.git", - "reference": "master" - } - } - } - ], - "require": { - "acquia/memcache-settings": "^1.2", - "drupal/csv_serialization": "^2.1 || ^3.0", - "drupal/dropzonejs": "2.8", - "drupal/typogrify": "^1.1", - "drupal/views_autosubmit": "^1.4", - "drupal/views_data_export": "^1.0", - "su-sws/stanford_profile": "11.x-dev", - "su-sws/stanford_syndication": "^1.0", - "drupal/oembed_lazyload": "^2.0", - "drupal/config_filter": "^2.6", - "drush/drush": "12.5.3", - "drupal/redirect": "^1.10", - "drupal/auto_entitylabel": "3.2" - }, - "conflict": { - "drush/drush": ">=13.0.0" - }, - "config": { - "sort-packages": true - }, - "autoload": { - "psr-4": { + "config": { + "sort-packages": true + }, + "autoload": { + "psr-4": { "Drupal\\engineering_profile\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { + } + }, + "autoload-dev": { + "psr-4": { "Drupal\\Tests\\engineering_profile\\": "tests/src" - } - }, - "extra": { - "drush": { - "services": { - "drush.services.yml": "^9" - } + } }, - "patches": { - "drupal/google_analytics": { - "https://www.drupal.org/project/google_analytics/issues/3373921": "https://www.drupal.org/files/issues/2023-08-07/google-analytics-issues-3373921-cannot-install-from-existing-config-11.patch" - }, - "drupal/menu_link": { - "https://www.drupal.org/project/menu_link/issues/3358081": "https://git.drupalcode.org/project/menu_link/-/merge_requests/9.patch" - }, - "drupal/menu_link_weight": { - "https://www.drupal.org/project/menu_link_weight/issues/2875984": "https://git.drupalcode.org/project/menu_link_weight/-/merge_requests/2.diff" - } + "extra": { + "drush": { + "services": { + "drush.services.yml": "^9" + } + }, + "patches": { + "drupal/hook_event_dispatcher": { + "https://www.drupal.org/project/hook_event_dispatcher/issues/3354751": "https://www.drupal.org/files/issues/2024-03-14/hook_event_dispatcher-4.x-3354751-7.patch" + }, + "drupal/menu_link": { + "https://www.drupal.org/project/menu_link/issues/3358081": "https://git.drupalcode.org/project/menu_link/-/merge_requests/9.patch" + }, + "drupal/menu_link_weight": { + "https://www.drupal.org/project/menu_link_weight/issues/2875984": "https://git.drupalcode.org/project/menu_link_weight/-/merge_requests/2.diff" + } + } } - } - } diff --git a/config/sync/auto_entitylabel.settings.node.stanford_person.yml b/config/sync/auto_entitylabel.settings.node.stanford_person.yml index c2a448b9a..090d28cba 100644 --- a/config/sync/auto_entitylabel.settings.node.stanford_person.yml +++ b/config/sync/auto_entitylabel.settings.node.stanford_person.yml @@ -7,3 +7,4 @@ chunk: 50 dependencies: config: - node.type.stanford_person +new_content_behavior: 0 diff --git a/config/sync/auto_entitylabel.settings.node.stanford_policy.yml b/config/sync/auto_entitylabel.settings.node.stanford_policy.yml index a852f02b1..3b4994fc1 100644 --- a/config/sync/auto_entitylabel.settings.node.stanford_policy.yml +++ b/config/sync/auto_entitylabel.settings.node.stanford_policy.yml @@ -7,3 +7,4 @@ chunk: 50 dependencies: config: - node.type.stanford_policy +new_content_behavior: 0 diff --git a/config/sync/block.block.stanford_profile_admin_theme_page_title.yml b/config/sync/block.block.stanford_profile_admin_theme_page_title.yml index fd9aa2308..947e73aa8 100644 --- a/config/sync/block.block.stanford_profile_admin_theme_page_title.yml +++ b/config/sync/block.block.stanford_profile_admin_theme_page_title.yml @@ -1,4 +1,4 @@ -uuid: c67faba5-06c3-4276-ad97-d452eb5cb58d +uuid: bcb0e656-856b-452d-9fb0-bf54090db73c langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: theme: - stanford_profile_admin_theme _core: - default_config_hash: xBKaUbnpqEWngIpbY4vXj2bi_de2EnrGK-X76Kb1A-E + default_config_hash: lhnflyBXTmG9VVPt76oQekDcheUOpXLsTLbqDM2Pu8c id: stanford_profile_admin_theme_page_title theme: stanford_profile_admin_theme region: header diff --git a/config/sync/chosen.settings.yml b/config/sync/chosen.settings.yml index 4c2885609..7deeb2c25 100644 --- a/config/sync/chosen.settings.yml +++ b/config/sync/chosen.settings.yml @@ -1,5 +1,6 @@ _core: default_config_hash: YWbqKPHA3djohSgnBRKhK0NUjnO1dL1XmIo3yBw3oFo +langcode: en minimum_single: 20 minimum_multiple: 20 disable_search_threshold: 0 diff --git a/config/sync/core.base_field_override.node.stanford_opportunity.promote.yml b/config/sync/core.base_field_override.node.stanford_opportunity.promote.yml new file mode 100644 index 000000000..299afea62 --- /dev/null +++ b/config/sync/core.base_field_override.node.stanford_opportunity.promote.yml @@ -0,0 +1,22 @@ +uuid: 3f3f7061-86ac-4e9e-be0a-38d67c82f7f4 +langcode: en +status: true +dependencies: + config: + - node.type.stanford_opportunity +id: node.stanford_opportunity.promote +field_name: promote +entity_type: node +bundle: stanford_opportunity +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/config/sync/core.base_field_override.node.stanford_opportunity.status.yml b/config/sync/core.base_field_override.node.stanford_opportunity.status.yml new file mode 100644 index 000000000..e25bf7d86 --- /dev/null +++ b/config/sync/core.base_field_override.node.stanford_opportunity.status.yml @@ -0,0 +1,22 @@ +uuid: c9479551-b56c-4b02-a97b-1a9a8a0f5d33 +langcode: en +status: true +dependencies: + config: + - node.type.stanford_opportunity +id: node.stanford_opportunity.status +field_name: status +entity_type: node +bundle: stanford_opportunity +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/config/sync/core.entity_form_display.config_pages.stanford_basic_site_settings.default.yml b/config/sync/core.entity_form_display.config_pages.stanford_basic_site_settings.default.yml index 28550ab97..c03501c86 100644 --- a/config/sync/core.entity_form_display.config_pages.stanford_basic_site_settings.default.yml +++ b/config/sync/core.entity_form_display.config_pages.stanford_basic_site_settings.default.yml @@ -36,6 +36,7 @@ dependencies: - field_group - file - link + - readonly_field_widget - text third_party_settings: field_group: diff --git a/config/sync/core.entity_form_display.node.stanford_event.default.yml b/config/sync/core.entity_form_display.node.stanford_event.default.yml index 44acddad2..0350192e3 100644 --- a/config/sync/core.entity_form_display.node.stanford_event.default.yml +++ b/config/sync/core.entity_form_display.node.stanford_event.default.yml @@ -216,9 +216,6 @@ content: region: content settings: modal: false - default_tz: user - custom_tz: America/Los_Angeles - allowed_timezones: { } default_duration: 60 default_duration_increments: |- 30 @@ -228,6 +225,9 @@ content: custom show_extra: false hide_date: true + default_tz: user + custom_tz: America/Los_Angeles + allowed_timezones: { } add_abbreviations: '' third_party_settings: { } su_event_dek: diff --git a/config/sync/core.entity_form_display.node.stanford_opportunity.default.yml b/config/sync/core.entity_form_display.node.stanford_opportunity.default.yml new file mode 100644 index 000000000..40620c83a --- /dev/null +++ b/config/sync/core.entity_form_display.node.stanford_opportunity.default.yml @@ -0,0 +1,366 @@ +uuid: 8cc4d029-0e2f-405c-bae1-9220b871ef78 +langcode: en +status: true +dependencies: + config: + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - change_labels + - datetime + - field_formatter_class + - field_group + - layout_paragraphs + - link + - media_library + - path + - scheduler + - stanford_fields + - telephone + - text +third_party_settings: + field_group: + group_contact_information: + children: + - su_opp_contact_name + - su_opp_contact_email + - su_opp_contact_phone + - su_opp_contact_url + label: 'Contact Information' + region: content + parent_name: '' + weight: 4 + format_type: details + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + open: false + description: 'Contact information for this opportunity. Displays on the individual opportunity page.' + required_fields: true + group_taxonomy: + children: + - su_opp_type + - su_opp_prerequisites + - su_opp_eligibility + - su_opp_course_code + - su_opp_cta_url + - su_opp_learn_more + label: 'Opportunity Sidebar' + region: content + parent_name: '' + weight: 2 + format_type: details + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + open: false + description: 'This will be displayed on the sidebar' + required_fields: true + group_dates: + children: + - su_opp_status + - su_opp_open_date + - su_opp_application_deadline + - su_opp_start_date + label: 'Opportunity Dates & Deadlines' + region: content + parent_name: '' + weight: 3 + format_type: details + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + open: false + description: '' + required_fields: true + group_basics: + children: + - su_opp_image + - su_opp_sponsor + - su_opp_summary + - su_opp_source + - su_opp_tags + label: Basics + region: content + parent_name: '' + weight: 1 + format_type: details + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + open: false + description: '' + required_fields: true +id: node.stanford_opportunity.default +targetEntityType: node +bundle: stanford_opportunity +mode: default +content: + body: + type: text_textarea_with_summary + weight: 5 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 9 + region: content + settings: { } + third_party_settings: { } + layout_builder__layout: + type: null + weight: 53 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 12 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + publish_on: + type: datetime_timestamp_no_default + weight: 15 + region: content + settings: { } + third_party_settings: { } + scheduler_settings: + weight: 14 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 7 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 11 + region: content + settings: + display_label: true + third_party_settings: { } + su_opp_application_deadline: + type: datetime_default + weight: 13 + region: content + settings: { } + third_party_settings: { } + su_opp_components: + type: layout_paragraphs + weight: 6 + region: content + settings: + view_mode: default + preview_view_mode: default + form_display_mode: default + nesting_depth: 0 + require_layouts: 1 + empty_message: '' + third_party_settings: { } + su_opp_contact_email: + type: email_default + weight: 16 + region: content + settings: + placeholder: '' + size: 60 + third_party_settings: { } + su_opp_contact_name: + type: string_textfield + weight: 15 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + su_opp_contact_phone: + type: telephone_default + weight: 17 + region: content + settings: + placeholder: '' + third_party_settings: { } + su_opp_contact_url: + type: link_default + weight: 18 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + su_opp_course_code: + type: string_textfield + weight: 12 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + su_opp_cta_url: + type: link_default + weight: 13 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + su_opp_eligibility: + type: text_textarea + weight: 11 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + su_opp_image: + type: media_library_widget + weight: 2 + region: content + settings: + media_types: { } + third_party_settings: { } + su_opp_learn_more: + type: link_default + weight: 15 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + su_opp_open_date: + type: datetime_default + weight: 12 + region: content + settings: { } + third_party_settings: { } + su_opp_prerequisites: + type: text_textarea + weight: 10 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + su_opp_source: + type: link_default + weight: 5 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + su_opp_sponsor: + type: options_select + weight: 3 + region: content + settings: { } + third_party_settings: { } + su_opp_start_date: + type: datetime_default + weight: 14 + region: content + settings: { } + third_party_settings: { } + su_opp_status: + type: boolean_checkbox + weight: 11 + region: content + settings: + display_label: true + third_party_settings: { } + su_opp_summary: + type: text_textarea + weight: 4 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + su_opp_tags: + type: taxonomy_label_hierarchy + weight: 6 + region: content + settings: { } + third_party_settings: + change_labels: + add_another: '' + field_label_overwrite: '' + hide_add_another: 0 + force_single_cardinality: 0 + su_opp_type: + type: options_select + weight: 9 + region: content + settings: { } + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 8 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 13 + region: content + settings: { } + third_party_settings: { } +hidden: + unpublish_on: true diff --git a/config/sync/core.entity_form_display.node.stanford_person.default.yml b/config/sync/core.entity_form_display.node.stanford_person.default.yml index aa5cf9bfd..b3d00a101 100644 --- a/config/sync/core.entity_form_display.node.stanford_person.default.yml +++ b/config/sync/core.entity_form_display.node.stanford_person.default.yml @@ -36,7 +36,6 @@ dependencies: - field.field.node.stanford_person.su_shared_tags - node.type.stanford_person module: - - allowed_formats - change_labels - cshs - field_group @@ -146,10 +145,7 @@ content: summary_rows: 3 placeholder: '' show_summary: false - third_party_settings: - allowed_formats: - hide_help: '0' - hide_guidelines: '0' + third_party_settings: { } field_menulink: type: menu_link_default weight: 53 diff --git a/config/sync/core.entity_form_display.node.stanford_policy.default.yml b/config/sync/core.entity_form_display.node.stanford_policy.default.yml index aa50db8bd..3ee8f0142 100644 --- a/config/sync/core.entity_form_display.node.stanford_policy.default.yml +++ b/config/sync/core.entity_form_display.node.stanford_policy.default.yml @@ -18,7 +18,6 @@ dependencies: - field.field.node.stanford_policy.su_policy_updated - node.type.stanford_policy module: - - allowed_formats - datetime - field_group - inline_entity_form @@ -61,10 +60,7 @@ content: summary_rows: 3 placeholder: '' show_summary: true - third_party_settings: - allowed_formats: - hide_help: '0' - hide_guidelines: '0' + third_party_settings: { } field_menulink: type: menu_link_default weight: 13 diff --git a/config/sync/core.entity_form_display.paragraph.stanford_accordion.default.yml b/config/sync/core.entity_form_display.paragraph.stanford_accordion.default.yml index 206a65c17..af16a09e1 100644 --- a/config/sync/core.entity_form_display.paragraph.stanford_accordion.default.yml +++ b/config/sync/core.entity_form_display.paragraph.stanford_accordion.default.yml @@ -7,6 +7,9 @@ dependencies: - field.field.paragraph.stanford_accordion.su_accordion_title - paragraphs.paragraphs_type.stanford_accordion module: + - change_labels + - field_formatter_class + - maxlength - text id: paragraph.stanford_accordion.default targetEntityType: paragraph @@ -27,7 +30,13 @@ content: settings: rows: 5 placeholder: '' - third_party_settings: { } + third_party_settings: + maxlength: + maxlength_js: 1000 + maxlength_js_label: 'Content limited to @limit characters, remaining: @remaining' + maxlength_js_enforce: true + change_labels: + field_label_overwrite: '' su_accordion_title: type: string_textfield weight: 0 diff --git a/config/sync/core.entity_form_display.paragraph.stanford_faq.default.yml b/config/sync/core.entity_form_display.paragraph.stanford_faq.default.yml new file mode 100644 index 000000000..83f3d506e --- /dev/null +++ b/config/sync/core.entity_form_display.paragraph.stanford_faq.default.yml @@ -0,0 +1,63 @@ +uuid: 4e43efbc-fa41-452d-9e8f-1033f949b6bc +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.stanford_faq.su_faq_description + - field.field.paragraph.stanford_faq.su_faq_headline + - field.field.paragraph.stanford_faq.su_faq_questions + - paragraphs.paragraphs_type.stanford_faq + module: + - paragraphs + - text +id: paragraph.stanford_faq.default +targetEntityType: paragraph +bundle: stanford_faq +mode: default +content: + status: + type: boolean_checkbox + weight: 3 + region: content + settings: + display_label: true + third_party_settings: { } + su_faq_description: + type: text_textarea + weight: 1 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + su_faq_headline: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + su_faq_questions: + type: paragraphs + weight: 2 + region: content + settings: + title: Questions/Answers + title_plural: Questions/Answers + edit_mode: closed + closed_mode: summary + autocollapse: all + closed_mode_threshold: 0 + add_mode: dropdown + form_display_mode: default + default_paragraph_type: stanford_accordion + features: + add_above: '0' + collapse_edit_all: collapse_edit_all + duplicate: duplicate + third_party_settings: { } +hidden: + created: true + publish_on: true + unpublish_on: true diff --git a/config/sync/core.entity_form_display.taxonomy_term.opportunity_sponsor.default.yml b/config/sync/core.entity_form_display.taxonomy_term.opportunity_sponsor.default.yml new file mode 100644 index 000000000..1c839bdfa --- /dev/null +++ b/config/sync/core.entity_form_display.taxonomy_term.opportunity_sponsor.default.yml @@ -0,0 +1,46 @@ +uuid: e4ab5585-8659-475d-b0ef-e13de49bfd51 +langcode: en +status: true +dependencies: + config: + - taxonomy.vocabulary.opportunity_sponsor + module: + - path + - text +id: taxonomy_term.opportunity_sponsor.default +targetEntityType: taxonomy_term +bundle: opportunity_sponsor +mode: default +content: + description: + type: text_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } +hidden: + publish_on: true + unpublish_on: true diff --git a/config/sync/core.entity_form_display.taxonomy_term.opportunity_tag_filters.default.yml b/config/sync/core.entity_form_display.taxonomy_term.opportunity_tag_filters.default.yml new file mode 100644 index 000000000..5111860ac --- /dev/null +++ b/config/sync/core.entity_form_display.taxonomy_term.opportunity_tag_filters.default.yml @@ -0,0 +1,46 @@ +uuid: 80cb931e-926c-4382-ac73-51f84844eb7e +langcode: en +status: true +dependencies: + config: + - taxonomy.vocabulary.opportunity_tag_filters + module: + - path + - text +id: taxonomy_term.opportunity_tag_filters.default +targetEntityType: taxonomy_term +bundle: opportunity_tag_filters +mode: default +content: + description: + type: text_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } +hidden: + publish_on: true + unpublish_on: true diff --git a/config/sync/core.entity_form_display.taxonomy_term.opportunity_type.default.yml b/config/sync/core.entity_form_display.taxonomy_term.opportunity_type.default.yml new file mode 100644 index 000000000..72387891d --- /dev/null +++ b/config/sync/core.entity_form_display.taxonomy_term.opportunity_type.default.yml @@ -0,0 +1,46 @@ +uuid: b025974f-fcbb-4c26-854b-0136cf511ecf +langcode: en +status: true +dependencies: + config: + - taxonomy.vocabulary.opportunity_type + module: + - path + - text +id: taxonomy_term.opportunity_type.default +targetEntityType: taxonomy_term +bundle: opportunity_type +mode: default +content: + description: + type: text_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + weight: 100 + region: content + settings: + display_label: true + third_party_settings: { } +hidden: + publish_on: true + unpublish_on: true diff --git a/config/sync/core.entity_view_display.config_pages.stanford_basic_site_settings.default.yml b/config/sync/core.entity_view_display.config_pages.stanford_basic_site_settings.default.yml index 8bd195428..c31b9044f 100644 --- a/config/sync/core.entity_view_display.config_pages.stanford_basic_site_settings.default.yml +++ b/config/sync/core.entity_view_display.config_pages.stanford_basic_site_settings.default.yml @@ -32,6 +32,7 @@ dependencies: module: - datetime - link + - options - text id: config_pages.stanford_basic_site_settings.default targetEntityType: config_pages diff --git a/config/sync/core.entity_view_display.media.embeddable.default.yml b/config/sync/core.entity_view_display.media.embeddable.default.yml index 6cebc52a6..e8c7091f1 100644 --- a/config/sync/core.entity_view_display.media.embeddable.default.yml +++ b/config/sync/core.entity_view_display.media.embeddable.default.yml @@ -15,7 +15,7 @@ mode: default content: field_media_embeddable_code: type: embeddable_formatter - label: visually_hidden + label: hidden settings: max_width: 0 max_height: 0 @@ -25,10 +25,12 @@ content: region: content field_media_embeddable_oembed: type: embeddable_formatter - label: visually_hidden + label: hidden settings: max_width: 0 max_height: 0 + loading: + attribute: lazy allowed_tags: '' third_party_settings: { } weight: 0 diff --git a/config/sync/core.entity_view_display.media.image.large_modal.yml b/config/sync/core.entity_view_display.media.image.large_modal.yml new file mode 100644 index 000000000..c714758e2 --- /dev/null +++ b/config/sync/core.entity_view_display.media.image.large_modal.yml @@ -0,0 +1,54 @@ +uuid: 2b2c0e22-8ee7-4d00-840e-2eed9afa61c6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.large_modal + - field.field.media.image.field_media_image + - field.field.media.image.su_media_category + - image.style.breakpoint_2xl_1x + - image.style.large + - media.type.image + module: + - colorbox + - empty_fields + - field_formatter_class + - field_label + - layout_builder +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +id: media.image.large_modal +targetEntityType: media +bundle: image +mode: large_modal +content: + field_media_image: + type: colorbox + label: hidden + settings: + colorbox_image_style: breakpoint_2xl_1x + colorbox_gallery: page + colorbox_gallery_custom: '' + colorbox_caption: auto + colorbox_caption_custom: '' + colorbox_node_style: large + colorbox_node_style_first: large + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 6 + region: content +hidden: + created: true + name: true + search_api_excerpt: true + su_media_category: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.image.medium_modal.yml b/config/sync/core.entity_view_display.media.image.medium_modal.yml new file mode 100644 index 000000000..6ffc93940 --- /dev/null +++ b/config/sync/core.entity_view_display.media.image.medium_modal.yml @@ -0,0 +1,54 @@ +uuid: f98966ea-7adf-47c2-ad3f-85055ea24ea7 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.medium_modal + - field.field.media.image.field_media_image + - field.field.media.image.su_media_category + - image.style.breakpoint_2xl_1x + - image.style.medium + - media.type.image + module: + - colorbox + - empty_fields + - field_formatter_class + - field_label + - layout_builder +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +id: media.image.medium_modal +targetEntityType: media +bundle: image +mode: medium_modal +content: + field_media_image: + type: colorbox + label: hidden + settings: + colorbox_image_style: breakpoint_2xl_1x + colorbox_gallery: page + colorbox_gallery_custom: '' + colorbox_caption: auto + colorbox_caption_custom: '' + colorbox_node_style: medium + colorbox_node_style_first: medium + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 6 + region: content +hidden: + created: true + name: true + search_api_excerpt: true + su_media_category: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.image.small_modal.yml b/config/sync/core.entity_view_display.media.image.small_modal.yml new file mode 100644 index 000000000..14f6a88d4 --- /dev/null +++ b/config/sync/core.entity_view_display.media.image.small_modal.yml @@ -0,0 +1,56 @@ +uuid: a4111c63-41f9-42ab-a8f1-70a8726911d1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.small_modal + - field.field.media.image.field_media_image + - field.field.media.image.su_media_category + - image.style.breakpoint_2xl_1x + - image.style.thumbnail + - media.type.image + module: + - colorbox + - empty_fields + - field_formatter_class + - field_label + - layout_builder +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: hSk8HhFOQGFB36lnn_tEKB38YVOq1uNpB-cdzzq5vMo +id: media.image.small_modal +targetEntityType: media +bundle: image +mode: small_modal +content: + field_media_image: + type: colorbox + label: hidden + settings: + colorbox_image_style: breakpoint_2xl_1x + colorbox_gallery: page + colorbox_gallery_custom: '' + colorbox_caption: auto + colorbox_caption_custom: '' + colorbox_node_style: thumbnail + colorbox_node_style_first: thumbnail + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + region: content +hidden: + created: true + name: true + search_api_excerpt: true + su_media_category: true + thumbnail: true + uid: true diff --git a/config/sync/core.entity_view_display.media.stanford_gallery_images.default.yml b/config/sync/core.entity_view_display.media.stanford_gallery_images.default.yml index 888c3aa4c..224ea1553 100644 --- a/config/sync/core.entity_view_display.media.stanford_gallery_images.default.yml +++ b/config/sync/core.entity_view_display.media.stanford_gallery_images.default.yml @@ -28,13 +28,13 @@ content: type: colorbox label: hidden settings: - colorbox_node_style: cta_1x_596x397 - colorbox_node_style_first: '' colorbox_image_style: breakpoint_2xl_2x colorbox_gallery: page colorbox_gallery_custom: '' colorbox_caption: custom colorbox_caption_custom: '[media:su_gallery_caption]' + colorbox_node_style: cta_1x_596x397 + colorbox_node_style_first: '' third_party_settings: field_formatter_class: class: '' diff --git a/config/sync/core.entity_view_display.node.stanford_event.default.yml b/config/sync/core.entity_view_display.node.stanford_event.default.yml index 2d1b4a023..42403c131 100644 --- a/config/sync/core.entity_view_display.node.stanford_event.default.yml +++ b/config/sync/core.entity_view_display.node.stanford_event.default.yml @@ -15,6 +15,7 @@ dependencies: - field.field.node.stanford_event.su_event_date_time - field.field.node.stanford_event.su_event_dek - field.field.node.stanford_event.su_event_email + - field.field.node.stanford_event.su_event_ext_image - field.field.node.stanford_event.su_event_groups - field.field.node.stanford_event.su_event_keywords - field.field.node.stanford_event.su_event_location @@ -99,11 +100,13 @@ third_party_settings: entity: layout_builder.entity view_mode: view_mode formatter: - type: entity_title_heading + type: string label: hidden settings: - tag: h2 + link_to_entity: false third_party_settings: + empty_fields: + handler: '' field_formatter_class: class: 'su-event-subheadline flex-9-of-12' weight: 8 diff --git a/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml b/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml index de5167efa..7ce606df2 100644 --- a/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml +++ b/config/sync/core.entity_view_display.node.stanford_news.stanford_card.yml @@ -27,7 +27,9 @@ dependencies: module: - ds - element_class_formatter + - empty_fields - field_formatter_class + - field_label - link - stanford_media - user @@ -41,11 +43,16 @@ third_party_settings: settings: pattern: field_templates: only_content + variant: default regions: news_vertical_teaser_image: - su_news_featured_media news_vertical_teaser_headline: - node_title + date: + - node_post_date + dek: + - su_news_dek news_topics: - su_soe_mag_topics - su_news_topics @@ -56,7 +63,7 @@ third_party_settings: fields: 'dynamic_token_field:node-news_content_url': plugin_id: 'dynamic_token_field:node-news_content_url' - weight: 4 + weight: 6 label: hidden formatter: default node_title: @@ -68,30 +75,40 @@ third_party_settings: link: false wrapper: '' class: '' + node_post_date: + plugin_id: node_post_date + weight: 2 + label: hidden + formatter: ds_post_date_stanford_month_date_year id: node.stanford_news.stanford_card targetEntityType: node bundle: stanford_news mode: stanford_card content: + su_news_dek: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 3 + region: dek su_news_featured_media: - type: media_multimedia_formatter + type: media_responsive_image_formatter label: hidden settings: view_mode: default link: false - image: - image_formatter: responsive_image_style - image_formatter_image_style: cta_2x_1014x676 - image_formatter_responsive_image_style: card_2_1 - image_formatter_view_mode: default - video: - video_formatter: entity - video_formatter_view_mode: default - other: - view_mode: default + image_style: card_2_1 + remove_alt: '1' third_party_settings: + empty_fields: + handler: '' field_formatter_class: class: '' + field_label: + label_value: '' + label_tag: '' weight: 0 region: news_vertical_teaser_image su_news_source: @@ -106,7 +123,7 @@ content: third_party_settings: field_formatter_class: class: '' - weight: 3 + weight: 5 region: news_source su_news_topics: type: entity_reference_list_label_class @@ -150,7 +167,6 @@ hidden: su_news_banner_media_caption: true su_news_byline: true su_news_components: true - su_news_dek: true su_news_hide_social: true su_news_publishing_date: true su_shared_tags: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.default.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.default.yml new file mode 100644 index 000000000..782c28f06 --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.default.yml @@ -0,0 +1,625 @@ +uuid: 46505eb5-a712-448f-9fd3-5cb6663a7706 +langcode: en +status: true +dependencies: + config: + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - field_group + - jumpstart_ui + - layout_builder + - layout_builder_restrictions + - layout_library + - user +third_party_settings: + layout_builder: + enabled: true + allow_custom: true + sections: + - + layout_id: jumpstart_ui_one_column + layout_settings: + label: '' + context_mapping: { } + extra_classes: '' + centered: centered-container + columns: default + components: + d8d66e18-44f6-4e82-90c7-131eaf8e19de: + uuid: d8d66e18-44f6-4e82-90c7-131eaf8e19de + region: main + configuration: + id: 'field_block:node:stanford_opportunity:title' + label: Title + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_title_heading + label: hidden + settings: + tag: h1 + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 2 + additional: { } + third_party_settings: { } + - + layout_id: jumpstart_ui_two_column + layout_settings: + label: '' + context_mapping: { } + extra_classes: '' + centered: centered-container + orientation: left + components: + 7676c62a-39a7-4e6f-b32d-4d7dd5ddeab5: + uuid: 7676c62a-39a7-4e6f-b32d-4d7dd5ddeab5 + region: left + configuration: + id: jumpstart_ui_skipnav_main_anchor + label: 'Main content anchor target' + label_display: '0' + provider: jumpstart_ui + context_mapping: { } + weight: 0 + additional: { } + 764b7bd8-7488-4796-a259-314de23b87b3: + uuid: 764b7bd8-7488-4796-a259-314de23b87b3 + region: left + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_summary' + label: Summary + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 1 + additional: { } + 411af66d-4ede-4ca0-a51d-c56cb10a96ef: + uuid: 411af66d-4ede-4ca0-a51d-c56cb10a96ef + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_image' + label: 'Featured Image' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: stanford_image_large_square + link: false + image_style: '' + remove_alt: 0 + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + additional: { } + d18ff1e0-f50c-4248-b301-2e077267b15c: + uuid: d18ff1e0-f50c-4248-b301-2e077267b15c + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_type' + label: 'Opportunity Type' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 1 + additional: { } + 6e41b2ce-22c1-4c37-9a18-14082782a173: + uuid: 6e41b2ce-22c1-4c37-9a18-14082782a173 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_application_deadline' + label: 'Application Deadline' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: medium + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 2 + additional: { } + 380d8445-73a4-4601-b30c-b8b9f866b057: + uuid: 380d8445-73a4-4601-b30c-b8b9f866b057 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_eligibility' + label: Eligibility + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: above + settings: { } + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 3 + additional: { } + 754b749d-c0cd-4bc8-8594-1992fdbbe0a3: + uuid: 754b749d-c0cd-4bc8-8594-1992fdbbe0a3 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_start_date' + label: 'Start Date' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: datetime_default + label: above + settings: + timezone_override: '' + format_type: medium + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 4 + additional: { } + 5427b410-5b74-41b2-b6c8-44fac25c3150: + uuid: 5427b410-5b74-41b2-b6c8-44fac25c3150 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_course_code' + label: 'Course Code' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 5 + additional: { } + 9b45c4b5-bbe3-44f4-803f-bb305be025fe: + uuid: 9b45c4b5-bbe3-44f4-803f-bb305be025fe + region: left + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_prerequisites' + label: Prerequisites + label_display: visible + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 2 + additional: { } + e712f81b-4aa1-4bc7-bb7f-5068acb3bbd1: + uuid: e712f81b-4aa1-4bc7-bb7f-5068acb3bbd1 + region: left + configuration: + id: 'field_block:node:stanford_opportunity:body' + label: Body + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: text_default + label: hidden + settings: { } + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 3 + additional: { } + third_party_settings: { } + - + layout_id: jumpstart_ui_one_column + layout_settings: + label: '' + context_mapping: { } + extra_classes: '' + centered: centered-container + columns: default + components: + fbba124c-b6c2-4129-a8df-e79870507c8c: + uuid: fbba124c-b6c2-4129-a8df-e79870507c8c + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_contact_url' + label: 'Contact Link' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '0' + target: '0' + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 6 + additional: { } + e7da11a9-d160-429f-b39c-6cd0b8cbe496: + uuid: e7da11a9-d160-429f-b39c-6cd0b8cbe496 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_contact_phone' + label: 'Contact Phone' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: telephone_link_class + label: hidden + settings: + title: '' + class: '' + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 5 + additional: { } + 09a85452-e091-4c80-902b-e55c9aaa6d5e: + uuid: 09a85452-e091-4c80-902b-e55c9aaa6d5e + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_contact_email' + label: 'Contact Email' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: basic_string + label: hidden + settings: { } + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 4 + additional: { } + 1af2c338-0e61-4e46-b07e-1de570d93985: + uuid: 1af2c338-0e61-4e46-b07e-1de570d93985 + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_contact_name' + label: 'Contact Name' + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 3 + additional: { } + 75a9a36d-20ef-46a1-aaf6-3fbe4814ec5b: + uuid: 75a9a36d-20ef-46a1-aaf6-3fbe4814ec5b + region: main + configuration: + id: 'field_block:node:stanford_opportunity:su_opp_components' + label: Paragraphs + label_display: '0' + provider: layout_builder + context_mapping: + entity: layout_builder.entity + view_mode: view_mode + formatter: + type: layout_paragraphs + label: hidden + settings: + view_mode: default + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 2 + additional: { } + third_party_settings: { } + layout_library: + enable: false + layout_builder_restrictions: + allowed_block_categories: + - 'Basic Page Type Lists (Views)' + - Book + - 'Changelog (Views)' + - 'Chaos Tools' + - 'Config Pages' + - 'Content fields' + - 'Custom block types' + - 'Custom blocks' + - Devel + - 'Devel PHP' + - Editoria11y + - 'Events Lists (Views)' + - Forms + - Help + - 'Inline blocks' + - 'Jumpstart UI' + - 'Lists (Views)' + - Menus + - 'News Lists (Views)' + - 'PDB React' + - 'People Lists (Views)' + - 'Policy (Views)' + - Printable + - 'Publication (Views)' + - React + - 'Stanford News' + - 'Stanford Profile Helper' + - 'Stanford SAML Authentication' + - System + - 'Taxonomy Terms (Views)' + - User + - Views + - core + entity_view_mode_restriction: + allowed_layouts: + - jumpstart_ui_one_column + - jumpstart_ui_two_column + - jumpstart_ui_three_column + denylisted_blocks: { } + allowlisted_blocks: + 'Changelog (Views)': + - 'views_block:change_logs-policy_changes' + 'Content fields': + - 'field_block:node:stanford_opportunity:su_opp_application_deadline' + - 'field_block:node:stanford_opportunity:su_opp_open_date' + - 'field_block:node:stanford_opportunity:body' + - 'field_block:node:stanford_opportunity:su_opp_cta_url' + - 'field_block:node:stanford_opportunity:changed' + - 'field_block:node:stanford_opportunity:su_opp_status' + - 'field_block:node:stanford_opportunity:su_opp_contact_email' + - 'field_block:node:stanford_opportunity:su_opp_contact_url' + - 'field_block:node:stanford_opportunity:su_opp_contact_name' + - 'field_block:node:stanford_opportunity:su_opp_contact_phone' + - 'field_block:node:stanford_opportunity:su_opp_course_code' + - 'field_block:node:stanford_opportunity:su_opp_eligibility' + - 'field_block:node:stanford_opportunity:su_opp_source' + - 'field_block:node:stanford_opportunity:su_opp_image' + - 'field_block:node:stanford_opportunity:su_opp_learn_more' + - 'field_block:node:stanford_opportunity:su_opp_tags' + - 'field_block:node:stanford_opportunity:su_opp_type' + - 'field_block:node:stanford_opportunity:su_opp_components' + - 'field_block:node:stanford_opportunity:su_opp_prerequisites' + - 'field_block:node:stanford_opportunity:su_opp_sponsor' + - 'field_block:node:stanford_opportunity:su_opp_start_date' + - 'field_block:node:stanford_opportunity:su_opp_summary' + - 'field_block:node:stanford_opportunity:title' + Menus: + - 'system_menu_block:stanford-event-types' + - 'menu_block:main' + - 'system_menu_block:stanford-person-type' + - 'system_menu_block:stanford-publication-topics' + - 'system_menu_block:news-topics' + System: + - system_breadcrumb_block + core: + - page_title_block + restricted_categories: + - Book + - 'Chaos Tools' + - 'Config Pages' + - Devel + - 'Devel PHP' + - Editoria11y + - Forms + - Help + - 'Lists (Views)' + - 'Policy (Views)' + - Printable + - React + - 'Stanford Profile Helper' + - 'Stanford SAML Authentication' + - 'Taxonomy Terms (Views)' + - User + - Views + field_group: + group_opp_card: + children: { } + label: 'Opportunity Details Card' + parent_name: '' + region: hidden + weight: 20 + format_type: html_element + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.stanford_opportunity.default +targetEntityType: node +bundle: stanford_opportunity +mode: default +content: { } +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_application_deadline: true + su_opp_back_to_link: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_image: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_sponsor: true + su_opp_start_date: true + su_opp_status: true + su_opp_summary: true + su_opp_tags: true + su_opp_type: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.full.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.full.yml new file mode 100644 index 000000000..0aa01f692 --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.full.yml @@ -0,0 +1,188 @@ +uuid: 009fc1c0-70e0-47a4-b0ce-d5aae84d1a8c +langcode: en +status: false +dependencies: + config: + - core.entity_view_mode.node.full + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - field_group + - layout_builder + - layout_builder_restrictions + - layout_library + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + layout_library: + enable: false + layout_builder_restrictions: + allowed_block_categories: + - 'Basic Page Type Lists (Views)' + - Book + - 'Changelog (Views)' + - 'Chaos Tools' + - 'Config Pages' + - 'Content fields' + - 'Custom block types' + - 'Custom blocks' + - Devel + - 'Devel PHP' + - Editoria11y + - 'Events Lists (Views)' + - Forms + - Help + - 'Inline blocks' + - 'Jumpstart UI' + - 'Lists (Views)' + - Menus + - 'News Lists (Views)' + - 'PDB React' + - 'People Lists (Views)' + - 'Policy (Views)' + - Printable + - 'Publication (Views)' + - React + - 'Stanford News' + - 'Stanford Profile Helper' + - 'Stanford SAML Authentication' + - System + - 'Taxonomy Terms (Views)' + - User + - Views + - core + entity_view_mode_restriction: + allowed_layouts: + - jumpstart_ui_one_column + - jumpstart_ui_two_column + - jumpstart_ui_three_column + denylisted_blocks: { } + allowlisted_blocks: + 'Changelog (Views)': + - 'views_block:change_logs-policy_changes' + 'Content fields': + - 'field_block:node:stanford_opportunity:su_opp_application_deadline' + - 'field_block:node:stanford_opportunity:su_opp_open_date' + - 'field_block:node:stanford_opportunity:body' + - 'field_block:node:stanford_opportunity:su_opp_cta_url' + - 'field_block:node:stanford_opportunity:changed' + - 'field_block:node:stanford_opportunity:su_opp_status' + - 'field_block:node:stanford_opportunity:su_opp_contact_email' + - 'field_block:node:stanford_opportunity:su_opp_contact_url' + - 'field_block:node:stanford_opportunity:su_opp_contact_name' + - 'field_block:node:stanford_opportunity:su_opp_contact_phone' + - 'field_block:node:stanford_opportunity:su_opp_course_code' + - 'field_block:node:stanford_opportunity:su_opp_eligibility' + - 'field_block:node:stanford_opportunity:su_opp_source' + - 'field_block:node:stanford_opportunity:su_opp_image' + - 'field_block:node:stanford_opportunity:su_opp_learn_more' + - 'field_block:node:stanford_opportunity:su_opp_tags' + - 'field_block:node:stanford_opportunity:su_opp_type' + - 'field_block:node:stanford_opportunity:su_opp_components' + - 'field_block:node:stanford_opportunity:su_opp_prerequisites' + - 'field_block:node:stanford_opportunity:su_opp_sponsor' + - 'field_block:node:stanford_opportunity:su_opp_start_date' + - 'field_block:node:stanford_opportunity:su_opp_summary' + - 'field_block:node:stanford_opportunity:title' + Menus: + - 'system_menu_block:stanford-event-types' + - 'menu_block:main' + - 'system_menu_block:stanford-person-type' + - 'system_menu_block:stanford-publication-topics' + - 'system_menu_block:news-topics' + System: + - system_breadcrumb_block + core: + - page_title_block + restricted_categories: + - Book + - 'Chaos Tools' + - 'Config Pages' + - Devel + - 'Devel PHP' + - Editoria11y + - Forms + - Help + - 'Lists (Views)' + - 'Policy (Views)' + - Printable + - React + - 'Stanford Profile Helper' + - 'Stanford SAML Authentication' + - 'Taxonomy Terms (Views)' + - User + - Views + field_group: + group_opp_card: + children: { } + label: 'Opportunity Details Card' + parent_name: '' + region: hidden + weight: 20 + format_type: html_element + format_settings: + classes: '' + show_empty_fields: false + id: '' + label_as_html: false + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.stanford_opportunity.full +targetEntityType: node +bundle: stanford_opportunity +mode: full +content: { } +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_application_deadline: true + su_opp_back_to_link: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_image: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_sponsor: true + su_opp_start_date: true + su_opp_status: true + su_opp_summary: true + su_opp_tags: true + su_opp_type: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.search_indexing.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.search_indexing.yml new file mode 100644 index 000000000..6916f3627 --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.search_indexing.yml @@ -0,0 +1,114 @@ +uuid: 1916634a-c65b-4f14-a373-226322fb5d44 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_indexing + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - datetime + - layout_builder + - layout_builder_restrictions + - layout_library + - text + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + layout_library: + enable: false + layout_builder_restrictions: + allowed_block_categories: { } + entity_view_mode_restriction: + allowed_layouts: { } + denylisted_blocks: { } + allowlisted_blocks: { } + restricted_categories: { } +id: node.stanford_opportunity.search_indexing +targetEntityType: node +bundle: stanford_opportunity +mode: search_indexing +content: + su_opp_application_deadline: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + weight: 1 + region: content + su_opp_image: + type: entity_reference_label + label: hidden + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + su_opp_sponsor: + type: entity_reference_label + label: hidden + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + su_opp_summary: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 3 + region: content + su_opp_type: + type: entity_reference_label + label: hidden + settings: + link: true + third_party_settings: { } + weight: 4 + region: content +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_start_date: true + su_opp_status: true + su_opp_tags: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_card.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_card.yml new file mode 100644 index 000000000..e5620cc58 --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_card.yml @@ -0,0 +1,194 @@ +uuid: 7fcf8863-6439-478b-9c8e-412b0de21623 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.stanford_card + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - ds + - empty_fields + - field_formatter_class + - field_label + - layout_builder + - layout_builder_restrictions + - layout_library + - smart_trim + - stanford_media + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + layout_library: + enable: false + layout_builder_restrictions: + allowed_block_categories: { } + entity_view_mode_restriction: + allowed_layouts: { } + denylisted_blocks: { } + allowlisted_blocks: { } + restricted_categories: { } + ds: + layout: + id: pattern_card + library: null + disable_css: false + entity_classes: all_classes + settings: + pattern: + field_templates: default + variant: default + regions: + card_image: + - su_opp_image + card_super_headline: + - su_opp_sponsor + card_headline: + - node_title + card_body: + - su_opp_type + - su_opp_summary + fields: + node_title: + plugin_id: node_title + weight: 2 + label: hidden + formatter: default + settings: + link: true + 'link class': '' + link_target: '' + wrapper: '' + class: su-card__link +id: node.stanford_opportunity.stanford_card +targetEntityType: node +bundle: stanford_opportunity +mode: stanford_card +content: + su_opp_image: + type: media_image_formatter + label: hidden + settings: + view_mode: default + link: true + image_style: card_1192x596 + remove_alt: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + region: card_image + su_opp_sponsor: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + ds: + ds_limit: '' + weight: 1 + region: card_super_headline + su_opp_summary: + type: smart_trim + label: hidden + settings: + trim_length: 50 + trim_type: words + trim_suffix: '' + wrap_output: false + wrap_class: trimmed + more: + display_link: false + target_blank: false + link_trim_only: false + class: more-link + text: More + aria_label: 'Read more about [node:title]' + summary_handler: full + trim_options: + text: false + trim_zero: false + replace_tokens: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 4 + region: card_body + su_opp_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + ds: + ds_limit: '' + weight: 3 + region: card_body +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_application_deadline: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_start_date: true + su_opp_status: true + su_opp_tags: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_h3_card.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_h3_card.yml new file mode 100644 index 000000000..fb3e4ed6f --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.stanford_h3_card.yml @@ -0,0 +1,194 @@ +uuid: c4b68950-875c-401e-8b29-7750098537cb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.stanford_h3_card + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - ds + - empty_fields + - field_formatter_class + - field_label + - layout_builder + - layout_builder_restrictions + - layout_library + - smart_trim + - stanford_media + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + layout_library: + enable: false + layout_builder_restrictions: + allowed_block_categories: { } + entity_view_mode_restriction: + allowed_layouts: { } + denylisted_blocks: { } + allowlisted_blocks: { } + restricted_categories: { } + ds: + layout: + id: pattern_card + library: null + disable_css: false + entity_classes: all_classes + settings: + pattern: + field_templates: default + variant: default + regions: + card_image: + - su_opp_image + card_super_headline: + - su_opp_sponsor + card_headline: + - node_title + card_body: + - su_opp_type + - su_opp_summary + fields: + node_title: + plugin_id: node_title + weight: 2 + label: hidden + formatter: default + settings: + link: true + 'link class': '' + link_target: '' + wrapper: h3 + class: su-card__link +id: node.stanford_opportunity.stanford_h3_card +targetEntityType: node +bundle: stanford_opportunity +mode: stanford_h3_card +content: + su_opp_image: + type: media_image_formatter + label: hidden + settings: + view_mode: default + link: true + image_style: card_1192x596 + remove_alt: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + region: card_image + su_opp_sponsor: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + ds: + ds_limit: '' + weight: 1 + region: card_super_headline + su_opp_summary: + type: smart_trim + label: hidden + settings: + trim_length: 50 + trim_type: words + trim_suffix: '' + wrap_output: false + wrap_class: trimmed + more: + display_link: false + target_blank: false + link_trim_only: false + class: more-link + text: More + aria_label: 'Read more about [node:title]' + summary_handler: full + trim_options: + text: false + trim_zero: false + replace_tokens: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 4 + region: card_body + su_opp_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + ds: + ds_limit: '' + weight: 3 + region: card_body +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_application_deadline: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_start_date: true + su_opp_status: true + su_opp_tags: true diff --git a/config/sync/core.entity_view_display.node.stanford_opportunity.teaser.yml b/config/sync/core.entity_view_display.node.stanford_opportunity.teaser.yml new file mode 100644 index 000000000..e23d351ee --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_opportunity.teaser.yml @@ -0,0 +1,113 @@ +uuid: eacf0e3e-0783-44c6-9012-4c4c9e2b7c47 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.stanford_opportunity.body + - field.field.node.stanford_opportunity.layout_builder__layout + - field.field.node.stanford_opportunity.su_opp_application_deadline + - field.field.node.stanford_opportunity.su_opp_components + - field.field.node.stanford_opportunity.su_opp_contact_email + - field.field.node.stanford_opportunity.su_opp_contact_name + - field.field.node.stanford_opportunity.su_opp_contact_phone + - field.field.node.stanford_opportunity.su_opp_contact_url + - field.field.node.stanford_opportunity.su_opp_course_code + - field.field.node.stanford_opportunity.su_opp_cta_url + - field.field.node.stanford_opportunity.su_opp_eligibility + - field.field.node.stanford_opportunity.su_opp_image + - field.field.node.stanford_opportunity.su_opp_learn_more + - field.field.node.stanford_opportunity.su_opp_open_date + - field.field.node.stanford_opportunity.su_opp_prerequisites + - field.field.node.stanford_opportunity.su_opp_source + - field.field.node.stanford_opportunity.su_opp_sponsor + - field.field.node.stanford_opportunity.su_opp_start_date + - field.field.node.stanford_opportunity.su_opp_status + - field.field.node.stanford_opportunity.su_opp_summary + - field.field.node.stanford_opportunity.su_opp_tags + - field.field.node.stanford_opportunity.su_opp_type + - node.type.stanford_opportunity + module: + - datetime + - empty_fields + - field_formatter_class + - field_label + - stanford_media + - text + - user +id: node.stanford_opportunity.teaser +targetEntityType: node +bundle: stanford_opportunity +mode: teaser +content: + su_opp_application_deadline: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + weight: 1 + region: content + su_opp_image: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: stanford_image_large_square + link: false + image_style: '' + remove_alt: 0 + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + region: content + su_opp_sponsor: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + su_opp_summary: + type: text_trimmed + label: hidden + settings: + trim_length: 600 + third_party_settings: { } + weight: 3 + region: content + su_opp_type: + type: entity_reference_label + label: hidden + settings: + link: true + third_party_settings: { } + weight: 4 + region: content +hidden: + body: true + layout_builder__layout: true + links: true + search_api_excerpt: true + su_opp_components: true + su_opp_contact_email: true + su_opp_contact_name: true + su_opp_contact_phone: true + su_opp_contact_url: true + su_opp_course_code: true + su_opp_cta_url: true + su_opp_eligibility: true + su_opp_learn_more: true + su_opp_open_date: true + su_opp_prerequisites: true + su_opp_source: true + su_opp_start_date: true + su_opp_status: true + su_opp_tags: true diff --git a/config/sync/core.entity_view_display.node.stanford_person.default.yml b/config/sync/core.entity_view_display.node.stanford_person.default.yml index 6fbfdd3bd..30b997622 100644 --- a/config/sync/core.entity_view_display.node.stanford_person.default.yml +++ b/config/sync/core.entity_view_display.node.stanford_person.default.yml @@ -222,11 +222,16 @@ third_party_settings: settings: view_mode: default link: false - image_style: medium_square + image_style: large_square remove_alt: true third_party_settings: + empty_fields: + handler: '' field_formatter_class: class: su-person-photo + field_label: + label_value: '' + label_tag: '' weight: 0 additional: { } 9e6e76d4-b758-4c2b-97a7-495f43965c3a: @@ -278,10 +283,13 @@ third_party_settings: rel: nofollow target: '0' third_party_settings: + empty_fields: + handler: '' field_formatter_class: class: su-person-links - ds: - ds_limit: '' + field_label: + label_value: '' + label_tag: h3 weight: 10 additional: { } 82a532c7-d73f-491e-8ce3-3fd27c29a815: diff --git a/config/sync/core.entity_view_display.node.stanford_person.stanford_h3_card_plain.yml b/config/sync/core.entity_view_display.node.stanford_person.stanford_h3_card_plain.yml new file mode 100644 index 000000000..c6e1704af --- /dev/null +++ b/config/sync/core.entity_view_display.node.stanford_person.stanford_h3_card_plain.yml @@ -0,0 +1,134 @@ +uuid: 77178d96-5b98-47dc-a496-09f161632684 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.stanford_h3_card_plain + - field.field.node.stanford_person.body + - field.field.node.stanford_person.field_menulink + - field.field.node.stanford_person.layout_builder__layout + - field.field.node.stanford_person.stanford_intranet__access + - field.field.node.stanford_person.su_metatags + - field.field.node.stanford_person.su_person_academic_appt + - field.field.node.stanford_person.su_person_admin_appts + - field.field.node.stanford_person.su_person_affiliations + - field.field.node.stanford_person.su_person_components + - field.field.node.stanford_person.su_person_education + - field.field.node.stanford_person.su_person_email + - field.field.node.stanford_person.su_person_fax + - field.field.node.stanford_person.su_person_first_name + - field.field.node.stanford_person.su_person_full_title + - field.field.node.stanford_person.su_person_last_name + - field.field.node.stanford_person.su_person_links + - field.field.node.stanford_person.su_person_location_address + - field.field.node.stanford_person.su_person_location_name + - field.field.node.stanford_person.su_person_mail_code + - field.field.node.stanford_person.su_person_map_url + - field.field.node.stanford_person.su_person_mobile_phone + - field.field.node.stanford_person.su_person_photo + - field.field.node.stanford_person.su_person_profile_link + - field.field.node.stanford_person.su_person_pronouns + - field.field.node.stanford_person.su_person_research + - field.field.node.stanford_person.su_person_research_interests + - field.field.node.stanford_person.su_person_scholarly_interests + - field.field.node.stanford_person.su_person_short_title + - field.field.node.stanford_person.su_person_telephone + - field.field.node.stanford_person.su_person_type_group + - field.field.node.stanford_person.su_shared_tags + - node.type.stanford_person + module: + - ds + - field_formatter_class + - layout_builder + - stanford_media + - user +third_party_settings: + ds: + layout: + id: pattern_card + library: null + disable_css: false + entity_classes: all_classes + settings: + pattern: + field_templates: default + variant: minimal + regions: + card_image: + - su_person_photo + card_body: + - node_title + - su_person_short_title + fields: + node_title: + plugin_id: node_title + weight: 1 + label: hidden + formatter: default + settings: + link: true + 'link class': '' + link_target: '' + wrapper: h3 + class: '' + layout_builder: + enabled: false + allow_custom: false +id: node.stanford_person.stanford_h3_card_plain +targetEntityType: node +bundle: stanford_person +mode: stanford_h3_card_plain +content: + su_person_photo: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: default + link: false + image_style: responsive_1_1 + remove_alt: false + third_party_settings: + field_formatter_class: + class: '' + weight: 0 + region: card_image + su_person_short_title: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 2 + region: card_body +hidden: + body: true + field_menulink: true + layout_builder__layout: true + links: true + search_api_excerpt: true + stanford_intranet__access: true + su_metatags: true + su_person_academic_appt: true + su_person_admin_appts: true + su_person_affiliations: true + su_person_components: true + su_person_education: true + su_person_email: true + su_person_fax: true + su_person_first_name: true + su_person_full_title: true + su_person_last_name: true + su_person_links: true + su_person_location_address: true + su_person_location_name: true + su_person_mail_code: true + su_person_map_url: true + su_person_mobile_phone: true + su_person_profile_link: true + su_person_pronouns: true + su_person_research: true + su_person_research_interests: true + su_person_scholarly_interests: true + su_person_telephone: true + su_person_type_group: true + su_shared_tags: true diff --git a/config/sync/core.entity_view_display.paragraph.stanford_faq.default.yml b/config/sync/core.entity_view_display.paragraph.stanford_faq.default.yml new file mode 100644 index 000000000..857438222 --- /dev/null +++ b/config/sync/core.entity_view_display.paragraph.stanford_faq.default.yml @@ -0,0 +1,45 @@ +uuid: 2895bffa-14b5-41cd-bb3a-b0020fb04037 +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.stanford_faq.su_faq_description + - field.field.paragraph.stanford_faq.su_faq_headline + - field.field.paragraph.stanford_faq.su_faq_questions + - paragraphs.paragraphs_type.stanford_faq + module: + - entity_reference_revisions + - stanford_fields + - text +id: paragraph.stanford_faq.default +targetEntityType: paragraph +bundle: stanford_faq +mode: default +content: + su_faq_description: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content + su_faq_headline: + type: entity_title_heading + label: hidden + settings: + tag: h2 + linked: false + third_party_settings: { } + weight: 0 + region: content + su_faq_questions: + type: entity_reference_revisions_entity_view + label: hidden + settings: + view_mode: default + link: '' + third_party_settings: { } + weight: 2 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.paragraph.stanford_page_title_banner.variant_1.yml b/config/sync/core.entity_view_display.paragraph.stanford_page_title_banner.variant_1.yml new file mode 100644 index 000000000..7ff8bd885 --- /dev/null +++ b/config/sync/core.entity_view_display.paragraph.stanford_page_title_banner.variant_1.yml @@ -0,0 +1,43 @@ +uuid: f74416ab-8293-488b-be0f-dc477ec65458 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.paragraph.variant_1 + - field.field.paragraph.stanford_page_title_banner.su_title_banner_image + - paragraphs.paragraphs_type.stanford_page_title_banner + module: + - empty_fields + - field_formatter_class + - field_label + - layout_builder + - stanford_media +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +id: paragraph.stanford_page_title_banner.variant_1 +targetEntityType: paragraph +bundle: stanford_page_title_banner +mode: variant_1 +content: + su_title_banner_image: + type: media_responsive_image_formatter + label: hidden + settings: + view_mode: default + link: false + image_style: card_2_1 + remove_alt: 0 + third_party_settings: + empty_fields: + handler: '' + field_formatter_class: + class: '' + field_label: + label_value: '' + label_tag: '' + weight: 0 + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_mode.media.large_modal.yml b/config/sync/core.entity_view_mode.media.large_modal.yml new file mode 100644 index 000000000..8e41c4efe --- /dev/null +++ b/config/sync/core.entity_view_mode.media.large_modal.yml @@ -0,0 +1,11 @@ +uuid: f192f9f4-716f-40fd-be1d-66739d311c5a +langcode: en +status: true +dependencies: + module: + - media +id: media.large_modal +label: 'Large Modal' +description: '' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_view_mode.media.medium_modal.yml b/config/sync/core.entity_view_mode.media.medium_modal.yml new file mode 100644 index 000000000..878181524 --- /dev/null +++ b/config/sync/core.entity_view_mode.media.medium_modal.yml @@ -0,0 +1,11 @@ +uuid: 437a171d-2c27-48e1-b3ad-a8b55c1b0c37 +langcode: en +status: true +dependencies: + module: + - media +id: media.medium_modal +label: 'Medium Modal' +description: '' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_view_mode.media.small_modal.yml b/config/sync/core.entity_view_mode.media.small_modal.yml new file mode 100644 index 000000000..7408f43a2 --- /dev/null +++ b/config/sync/core.entity_view_mode.media.small_modal.yml @@ -0,0 +1,11 @@ +uuid: a9df3242-e117-4b91-bd80-df6098ea4081 +langcode: en +status: true +dependencies: + module: + - media +id: media.small_modal +label: 'Thumb Modal' +description: '' +targetEntityType: media +cache: true diff --git a/config/sync/core.entity_view_mode.node.stanford_h3_card_plain.yml b/config/sync/core.entity_view_mode.node.stanford_h3_card_plain.yml new file mode 100644 index 000000000..dbcdc457b --- /dev/null +++ b/config/sync/core.entity_view_mode.node.stanford_h3_card_plain.yml @@ -0,0 +1,11 @@ +uuid: ebfd1cf5-50f9-4a96-81a0-4b4622cef025 +langcode: en +status: true +dependencies: + module: + - node +id: node.stanford_h3_card_plain +label: 'H3 Card Plain' +description: '' +targetEntityType: node +cache: true diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index 0f84848de..08b2dc330 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -3,20 +3,19 @@ _core: module: address: 0 admin_toolbar: 0 - admin_toolbar_links_access_filter: 0 admin_toolbar_tools: 0 allowed_formats: 0 auto_entitylabel: 0 autologout: 0 block: 0 block_content: 0 - block_content_permissions: 0 book: 0 breakpoint: 0 change_labels: 0 chosen: 0 chosen_lib: 0 ckeditor5: 0 + ckeditor5_icons: 0 ckeditor5_plugins: 0 colorbox: 0 components: 0 @@ -118,6 +117,7 @@ module: linkit: 0 markup: 0 mathjax: 0 + maxlength: 0 media: 0 media_duplicate_validation: 0 media_library: 0 @@ -126,7 +126,6 @@ module: menu_ui: 0 metatag: 0 metatag_open_graph: 0 - metatag_page_manager: 0 metatag_twitter_cards: 0 metatag_verification: 0 migrate: 0 diff --git a/config/sync/diff.settings.yml b/config/sync/diff.settings.yml index 699bbbbb8..06a648b95 100644 --- a/config/sync/diff.settings.yml +++ b/config/sync/diff.settings.yml @@ -1,5 +1,6 @@ _core: default_config_hash: oXwX3NzLv9QK_LbNEvpQ9OPwH9tqtMSJzq5y8t63Q8w +langcode: en general_settings: radio_behavior: simple context_lines_leading: 1 @@ -15,4 +16,5 @@ general_settings: unified_fields: enabled: true weight: 2 + visual_default_view_mode: full visual_inline_theme: default diff --git a/config/sync/editor.editor.stanford_html.yml b/config/sync/editor.editor.stanford_html.yml index a7626b436..8ac0feb51 100644 --- a/config/sync/editor.editor.stanford_html.yml +++ b/config/sync/editor.editor.stanford_html.yml @@ -29,6 +29,7 @@ settings: - '|' - blockQuote - drupalMedia + - icon - '|' - superscript - subscript @@ -37,6 +38,7 @@ settings: - '|' - codeBlock - code + - textPartLanguage - undo - redo plugins: @@ -156,7 +158,7 @@ settings: label: 'Splash Font' element: '
' - - label: 'Quote Text' + label: Quote element: '
' - label: 'Drop Cap First Letter' diff --git a/config/sync/editoria11y.configuration.yml b/config/sync/editoria11y.configuration.yml deleted file mode 100644 index 5e278f6db..000000000 --- a/config/sync/editoria11y.configuration.yml +++ /dev/null @@ -1,3 +0,0 @@ -ed11y_theme: lightTheme -disable_sync: false -preserve_params: 'search,keys,page,language,language_content_entity' diff --git a/config/sync/environment_indicator.settings.yml b/config/sync/environment_indicator.settings.yml index 628115b13..61df193c1 100644 --- a/config/sync/environment_indicator.settings.yml +++ b/config/sync/environment_indicator.settings.yml @@ -3,3 +3,5 @@ _core: toolbar_integration: toolbar: toolbar favicon: true +version_identifier: environment_indicator_current_release +version_identifier_fallback: deployment_identifier diff --git a/config/sync/extlink.settings.yml b/config/sync/extlink.settings.yml index 6a168fe32..b2bf0c399 100644 --- a/config/sync/extlink.settings.yml +++ b/config/sync/extlink.settings.yml @@ -1,5 +1,6 @@ _core: default_config_hash: gp38_GoeI-5DmdfeFE0NfHi_mbT2SqdU0zsJIQv-ehc +langcode: en extlink_use_external_js_file: false extlink_exclude_admin_routes: false extlink_target: false diff --git a/config/sync/field.field.citation.su_article_journal.su_author.yml b/config/sync/field.field.citation.su_article_journal.su_author.yml index b8017c53a..d82c9e19e 100644 --- a/config/sync/field.field.citation.su_article_journal.su_author.yml +++ b/config/sync/field.field.citation.su_article_journal.su_author.yml @@ -92,6 +92,7 @@ settings: field_title_display: before component_layout: default show_component_required_marker: false + flag_required_input: false credentials_inline: false override_format: default field_type: diff --git a/config/sync/field.field.citation.su_article_newspaper.su_author.yml b/config/sync/field.field.citation.su_article_newspaper.su_author.yml index 0fde9e8c1..8b11a4118 100644 --- a/config/sync/field.field.citation.su_article_newspaper.su_author.yml +++ b/config/sync/field.field.citation.su_article_newspaper.su_author.yml @@ -92,6 +92,7 @@ settings: field_title_display: before component_layout: default show_component_required_marker: false + flag_required_input: false credentials_inline: false override_format: default field_type: diff --git a/config/sync/field.field.citation.su_book.su_author.yml b/config/sync/field.field.citation.su_book.su_author.yml index aeaea4355..45208ffe7 100644 --- a/config/sync/field.field.citation.su_book.su_author.yml +++ b/config/sync/field.field.citation.su_book.su_author.yml @@ -92,6 +92,7 @@ settings: field_title_display: before component_layout: default show_component_required_marker: false + flag_required_input: false credentials_inline: false override_format: default field_type: diff --git a/config/sync/field.field.citation.su_other.su_author.yml b/config/sync/field.field.citation.su_other.su_author.yml index 83049212b..b111ac522 100644 --- a/config/sync/field.field.citation.su_other.su_author.yml +++ b/config/sync/field.field.citation.su_other.su_author.yml @@ -92,6 +92,7 @@ settings: field_title_display: before component_layout: default show_component_required_marker: false + flag_required_input: false credentials_inline: false override_format: default field_type: diff --git a/config/sync/field.field.citation.su_thesis.su_author.yml b/config/sync/field.field.citation.su_thesis.su_author.yml index eef6ec9b7..ae2259603 100644 --- a/config/sync/field.field.citation.su_thesis.su_author.yml +++ b/config/sync/field.field.citation.su_thesis.su_author.yml @@ -92,6 +92,7 @@ settings: field_title_display: before component_layout: default show_component_required_marker: false + flag_required_input: false credentials_inline: false override_format: default field_type: diff --git a/config/sync/field.field.config_pages.lockup_settings.su_intro.yml b/config/sync/field.field.config_pages.lockup_settings.su_intro.yml index b0b6212db..72b9cd876 100644 --- a/config/sync/field.field.config_pages.lockup_settings.su_intro.yml +++ b/config/sync/field.field.config_pages.lockup_settings.su_intro.yml @@ -20,6 +20,6 @@ default_value: default_value_callback: '' settings: markup: - value: "
This lockup will appear in the top left corner of the website's main header.
\r\nThese branding options are only available on Stanford Basic. Users of the Minimally Branded or Faculty themes should use the default lockup. To determine which lockup is right for your official unit, consult Department Branding section of the Stanford Identity Guide.
This branding will appear in the top left corner of the header section for your site. Separate settings for the lockup at the bottom of your site can be found in the Local Footer settings and will not be affected by changes you make here.
Sorry, no results found. Try another filter. Sorry, no results found. Try another filter. Super footers are super.
{{ title }}
'
+ make_link: false
+ path: ''
+ absolute: false
+ external: false
+ replace_spaces: false
+ path_case: none
+ trim_whitespace: false
+ alt: ''
+ rel: ''
+ link_class: ''
+ prefix: ''
+ suffix: ''
+ target: ''
+ nl2br: false
+ max_length: 0
+ word_boundary: false
+ ellipsis: false
+ more_link: false
+ more_link_text: ''
+ more_link_path: ''
+ strip_tags: false
+ trim: false
+ preserve_tags: ''
+ html: false
+ element_type: ''
+ element_class: ''
+ element_label_type: ''
+ element_label_class: ''
+ element_label_colon: false
+ element_wrapper_type: ''
+ element_wrapper_class: ''
+ element_default_classes: true
+ empty: ''
+ hide_empty: false
+ empty_zero: false
+ hide_alter_empty: true
+ click_sort_column: value
+ type: string
+ settings:
+ link_to_entity: true
+ group_column: value
+ group_columns: { }
+ group_rows: true
+ delta_limit: 0
+ delta_offset: 0
+ delta_reversed: false
+ delta_first_last: false
+ multi_type: separator
+ separator: ', '
+ field_api_classes: false
+ pager:
+ type: full
+ options:
+ offset: 0
+ pagination_heading_level: h4
+ items_per_page: 20
+ total_pages: null
+ id: 0
+ tags:
+ next: 'Next ›'
+ previous: '‹ Previous'
+ first: '« First'
+ last: 'Last »'
+ expose:
+ items_per_page: false
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '5, 10, 25, 50'
+ items_per_page_options_all: false
+ items_per_page_options_all_label: '- All -'
+ offset: false
+ offset_label: Offset
+ quantity: 9
+ exposed_form:
+ type: basic
+ options:
+ submit_button: Apply
+ reset_button: false
+ reset_button_label: Reset
+ exposed_sorts_label: 'Sort by'
+ expose_sort_order: true
+ sort_asc_label: Asc
+ sort_desc_label: Desc
+ access:
+ type: perm
+ options:
+ perm: 'access content'
+ cache:
+ type: tag
+ options: { }
+ empty: { }
+ sorts:
+ su_opp_start_date_value:
+ id: su_opp_start_date_value
+ table: node__su_opp_start_date
+ field: su_opp_start_date_value
+ relationship: none
+ group_type: group
+ admin_label: ''
+ plugin_id: datetime
+ order: ASC
+ expose:
+ label: ''
+ field_identifier: ''
+ exposed: false
+ granularity: second
+ arguments: { }
+ filters:
+ status:
+ id: status
+ table: node_field_data
+ field: status
+ entity_type: node
+ entity_field: status
+ plugin_id: boolean
+ value: '1'
+ group: 1
+ expose:
+ operator: ''
+ operator_limit_selection: false
+ operator_list: { }
+ type:
+ id: type
+ table: node_field_data
+ field: type
+ relationship: none
+ group_type: group
+ admin_label: ''
+ entity_type: node
+ entity_field: type
+ plugin_id: bundle
+ operator: in
+ value:
+ stanford_opportunity: stanford_opportunity
+ group: 1
+ exposed: false
+ expose:
+ operator_id: ''
+ label: ''
+ description: ''
+ use_operator: false
+ operator: ''
+ operator_limit_selection: false
+ operator_list: { }
+ identifier: ''
+ required: false
+ remember: false
+ multiple: false
+ remember_roles:
+ authenticated: authenticated
+ reduce: false
+ is_grouped: false
+ group_info:
+ label: ''
+ description: ''
+ identifier: ''
+ optional: true
+ widget: select
+ multiple: false
+ remember: false
+ default_group: All
+ default_group_multiple: { }
+ group_items: { }
+ filter_groups:
+ operator: AND
+ groups:
+ 1: AND
+ style:
+ type: html_list
+ options:
+ grouping:
+ -
+ field: su_schedule_date_time_value
+ rendered: true
+ rendered_strip: false
+ row_class: ''
+ default_row_class: true
+ type: ul
+ wrapper_class: ''
+ class: su-list-unstyled
+ row:
+ type: 'entity:node'
+ options:
+ relationship: none
+ view_mode: teaser
+ query:
+ type: views_query
+ options:
+ query_comment: ''
+ disable_sql_rewrite: false
+ distinct: false
+ replica: false
+ query_tags: { }
+ contextual_filters_or: false
+ relationships: { }
+ css_class: stanford-opportunities-list-page
+ use_ajax: true
+ link_display: '0'
+ link_url: ''
+ header: { }
+ footer: { }
+ display_extenders: { }
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ cards:
+ id: cards
+ display_title: 'Card Grid'
+ display_plugin: viewfield_block
+ position: 2
+ display_options:
+ display_extenders: { }
+ display_description: 'Grid - All Items'
+ block_description: ''
+ block_hide_empty: false
+ block_category: 'Opportunities (Views)'
+ fields:
+ title:
+ id: title
+ table: node_field_data
+ field: title
+ relationship: none
+ group_type: group
+ admin_label: ''
+ label: ''
+ exclude: false
+ alter:
+ alter_text: false
+ text: ''
+ make_link: false
+ path: ''
+ absolute: false
+ external: false
+ replace_spaces: false
+ path_case: none
+ trim_whitespace: false
+ alt: ''
+ rel: ''
+ link_class: ''
+ prefix: ''
+ suffix: ''
+ target: ''
+ nl2br: false
+ max_length: 0
+ word_boundary: true
+ ellipsis: true
+ more_link: false
+ more_link_text: ''
+ more_link_path: ''
+ strip_tags: false
+ trim: false
+ preserve_tags: ''
+ html: false
+ element_type: ''
+ element_class: ''
+ element_label_type: ''
+ element_label_class: ''
+ element_label_colon: false
+ element_wrapper_type: ''
+ element_wrapper_class: ''
+ element_default_classes: true
+ empty: ''
+ hide_empty: false
+ empty_zero: false
+ hide_alter_empty: true
+ click_sort_column: value
+ type: string
+ settings:
+ link_to_entity: true
+ group_column: value
+ group_columns: { }
+ group_rows: true
+ delta_limit: 0
+ delta_offset: 0
+ delta_reversed: false
+ delta_first_last: false
+ multi_type: separator
+ separator: ', '
+ field_api_classes: false
+ entity_type: node
+ entity_field: title
+ plugin_id: field
+ defaults:
+ fields: false
+ style: false
+ row: false
+ arguments: true
+ css_class: false
+ pager: false
+ title: false
+ style:
+ type: html_list
+ options:
+ row_class: ''
+ default_row_class: 1
+ uses_fields: 0
+ type: ul
+ wrapper_class: ''
+ class: 'su-list-unstyled grid-container-3'
+ row:
+ type: 'entity:node'
+ options:
+ relationship: none
+ view_mode: stanford_h3_card
+ css_class: ''
+ pager:
+ type: some
+ options:
+ items_per_page: 3
+ offset: 0
+ title: 'Opportunities Card Grid'
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ graphql:
+ id: graphql
+ display_title: GraphQL
+ display_plugin: graphql
+ position: 5
+ display_options:
+ title: 'Opportunities List'
+ pager:
+ type: full
+ options:
+ offset: 0
+ pagination_heading_level: h4
+ items_per_page: 30
+ total_pages: null
+ id: 0
+ tags:
+ next: 'Next ›'
+ previous: '‹ Previous'
+ first: '« First'
+ last: 'Last »'
+ expose:
+ items_per_page: true
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99'
+ items_per_page_options_all: true
+ items_per_page_options_all_label: '- All -'
+ offset: true
+ offset_label: Offset
+ quantity: 9
+ filters:
+ status:
+ id: status
+ table: node_field_data
+ field: status
+ entity_type: node
+ entity_field: status
+ plugin_id: boolean
+ value: '1'
+ group: 1
+ expose:
+ operator: ''
+ operator_limit_selection: false
+ operator_list: { }
+ type:
+ id: type
+ table: node_field_data
+ field: type
+ relationship: none
+ group_type: group
+ admin_label: ''
+ entity_type: node
+ entity_field: type
+ plugin_id: bundle
+ operator: in
+ value:
+ stanford_opportunity: stanford_opportunity
+ group: 1
+ exposed: false
+ expose:
+ operator_id: ''
+ label: ''
+ description: ''
+ use_operator: false
+ operator: ''
+ operator_limit_selection: false
+ operator_list: { }
+ identifier: ''
+ required: false
+ remember: false
+ multiple: false
+ remember_roles:
+ authenticated: authenticated
+ reduce: false
+ is_grouped: false
+ group_info:
+ label: ''
+ description: ''
+ identifier: ''
+ optional: true
+ widget: select
+ multiple: false
+ remember: false
+ default_group: All
+ default_group_multiple: { }
+ group_items: { }
+ su_opp_tags_target_id:
+ id: su_opp_tags_target_id
+ table: node__su_opp_tags
+ field: su_opp_tags_target_id
+ relationship: none
+ group_type: group
+ admin_label: ''
+ plugin_id: taxonomy_index_tid
+ operator: or
+ value: { }
+ group: 1
+ exposed: true
+ expose:
+ operator_id: su_opp_tags_target_id_op
+ label: Filter
+ description: ''
+ use_operator: false
+ operator: su_opp_tags_target_id_op
+ operator_limit_selection: false
+ operator_list: { }
+ identifier: tags
+ required: false
+ remember: false
+ multiple: true
+ remember_roles:
+ authenticated: authenticated
+ administrator: '0'
+ anonymous: '0'
+ stanford_faculty: '0'
+ stanford_staff: '0'
+ stanford_student: '0'
+ contributor: '0'
+ site_manager: '0'
+ site_editor: '0'
+ site_builder: '0'
+ site_developer: '0'
+ layout_builder_user: '0'
+ su_site_embedder: '0'
+ decoupled_site_users: '0'
+ opportunity_editor: '0'
+ reduce: false
+ is_grouped: false
+ group_info:
+ label: ''
+ description: ''
+ identifier: ''
+ optional: true
+ widget: select
+ multiple: false
+ remember: false
+ default_group: All
+ default_group_multiple: { }
+ group_items: { }
+ reduce_duplicates: false
+ vid: opportunity_tag_filters
+ type: select
+ hierarchy: true
+ limit: true
+ error_message: true
+ filter_groups:
+ operator: AND
+ groups:
+ 1: AND
+ defaults:
+ title: false
+ style: true
+ row: true
+ fields: true
+ arguments: true
+ filters: false
+ filter_groups: false
+ display_description: 'List - All Items'
+ display_extenders: { }
+ graphql_query_name: stanfordOpportunities
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ list_page:
+ id: list_page
+ display_title: 'Default List'
+ display_plugin: viewfield_block
+ position: 1
+ display_options:
+ display_extenders: { }
+ display_description: 'List - All Items'
+ block_description: ''
+ block_hide_empty: false
+ block_category: 'Opportunities (Views)'
+ defaults:
+ fields: true
+ style: true
+ row: true
+ arguments: true
+ title: false
+ pager: false
+ title: 'Opportunities List'
+ pager:
+ type: infinite_scroll
+ options:
+ pagination_heading_level: h4
+ items_per_page: '20'
+ offset: '0'
+ id: '0'
+ total_pages: ''
+ tags:
+ previous: '‹ Previous'
+ next: 'Next ›'
+ expose:
+ items_per_page: 0
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '5, 10, 25, 50'
+ items_per_page_options_all: 0
+ items_per_page_options_all_label: '- All -'
+ offset: 0
+ offset_label: Offset
+ views_infinite_scroll:
+ button_text: 'Load More Opportunities'
+ automatically_load_content: 0
+ initially_load_all_pages: 0
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ list_page_filtered:
+ id: list_page_filtered
+ display_title: 'Taxonomy Term Page List'
+ display_plugin: block
+ position: 3
+ display_options:
+ title: 'Opportunities Taxonomy Term Page'
+ arguments:
+ term_node_tid_depth:
+ id: term_node_tid_depth
+ table: node_field_data
+ field: term_node_tid_depth
+ relationship: none
+ group_type: group
+ admin_label: ''
+ entity_type: node
+ plugin_id: taxonomy_index_tid_depth
+ default_action: default
+ exception:
+ value: all
+ title_enable: false
+ title: All
+ title_enable: false
+ title: ''
+ default_argument_type: taxonomy_tid
+ default_argument_options:
+ term_page: '1'
+ node: false
+ limit: false
+ vids: { }
+ anyall: ','
+ summary_options:
+ base_path: ''
+ count: true
+ override: false
+ items_per_page: 25
+ summary:
+ sort_order: asc
+ number_of_records: 0
+ format: default_summary
+ specify_validation: false
+ validate:
+ type: none
+ fail: 'not found'
+ validate_options: { }
+ break_phrase: false
+ depth: 10
+ use_taxonomy_term_path: false
+ style:
+ type: html_list
+ options:
+ grouping: { }
+ row_class: ''
+ default_row_class: true
+ type: ul
+ wrapper_class: ''
+ class: su-list-unstyled
+ row:
+ type: 'entity:node'
+ options:
+ relationship: none
+ view_mode: teaser
+ defaults:
+ title: false
+ style: false
+ row: false
+ fields: true
+ arguments: false
+ display_description: 'List - All Items'
+ display_extenders: { }
+ block_description: ''
+ block_category: 'Opportunities (Views)'
+ block_hide_empty: false
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ more_opportunities_block:
+ id: more_opportunities_block
+ display_title: 'Explore More Opportunities Block'
+ display_plugin: block
+ position: 4
+ display_options:
+ title: 'Opportunities Explore More'
+ pager:
+ type: some
+ options:
+ offset: 0
+ items_per_page: 3
+ arguments:
+ nid:
+ id: nid
+ table: node_field_data
+ field: nid
+ relationship: none
+ group_type: group
+ admin_label: ''
+ entity_type: node
+ entity_field: nid
+ plugin_id: node_nid
+ default_action: default
+ exception:
+ value: all
+ title_enable: false
+ title: All
+ title_enable: false
+ title: ''
+ default_argument_type: node
+ default_argument_options: { }
+ summary_options:
+ base_path: ''
+ count: true
+ override: false
+ items_per_page: 25
+ summary:
+ sort_order: asc
+ number_of_records: 0
+ format: default_summary
+ specify_validation: false
+ validate:
+ type: none
+ fail: 'not found'
+ validate_options: { }
+ break_phrase: false
+ not: true
+ defaults:
+ title: false
+ css_class: true
+ pager: false
+ use_more: true
+ use_more_always: true
+ use_more_text: true
+ link_display: false
+ link_url: false
+ style: true
+ row: true
+ fields: true
+ arguments: false
+ display_description: 'Explore More Opportunities Block'
+ link_display: '0'
+ link_url: ''
+ display_extenders: { }
+ block_category: 'Opportunities (Views)'
+ block_hide_empty: true
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
diff --git a/config/sync/views.view.stanford_person.yml b/config/sync/views.view.stanford_person.yml
index 70b6befbe..ad04860ea 100644
--- a/config/sync/views.view.stanford_person.yml
+++ b/config/sync/views.view.stanford_person.yml
@@ -3,15 +3,12 @@ langcode: en
status: true
dependencies:
config:
- - field.storage.node.su_person_photo
- - field.storage.node.su_person_short_title
- - field.storage.node.su_person_type_group
+ - core.entity_view_mode.node.stanford_h3_card_plain
- node.type.stanford_person
module:
- graphql_compose_views
- node
- stanford_fields
- - stanford_media
- taxonomy
- user
- views_infinite_scroll
@@ -32,71 +29,6 @@ display:
display_options:
title: 'People Grid - All Results'
fields:
- su_person_photo:
- id: su_person_photo
- table: node__su_person_photo
- field: su_person_photo
- relationship: none
- group_type: group
- admin_label: ''
- plugin_id: field
- label: ''
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: false
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: target_id
- type: media_image_formatter
- settings:
- view_mode: default
- link: true
- image_style: stanford_circle
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
title:
id: title
table: node_field_data
@@ -160,319 +92,87 @@ display:
multi_type: separator
separator: ', '
field_api_classes: false
- su_person_short_title:
- id: su_person_short_title
- table: node__su_person_short_title
- field: su_person_short_title
+ pager:
+ type: infinite_scroll
+ options:
+ offset: 0
+ items_per_page: 39
+ total_pages: null
+ id: 0
+ tags:
+ next: 'Next ›'
+ previous: '‹ Previous'
+ expose:
+ items_per_page: false
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '5, 10, 25, 50'
+ items_per_page_options_all: false
+ items_per_page_options_all_label: '- All -'
+ offset: false
+ offset_label: Offset
+ views_infinite_scroll:
+ button_text: 'Load More People'
+ automatically_load_content: false
+ exposed_form:
+ type: basic
+ options:
+ submit_button: Apply
+ reset_button: false
+ reset_button_label: Reset
+ exposed_sorts_label: 'Sort by'
+ expose_sort_order: true
+ sort_asc_label: Asc
+ sort_desc_label: Desc
+ access:
+ type: perm
+ options:
+ perm: 'access content'
+ cache:
+ type: tag
+ options: { }
+ empty:
+ area_text_custom:
+ id: area_text_custom
+ table: views
+ field: area_text_custom
relationship: none
group_type: group
admin_label: ''
- plugin_id: field
- label: ''
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: false
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: string
- settings:
- link_to_entity: false
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- view_node:
- id: view_node
- table: node
- field: view_node
+ plugin_id: text_custom
+ empty: true
+ content: '