Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fieldgroups content 231 #232

Merged
merged 7 commits into from
Feb 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"drupal/google_analytics": "2.x",
"drupal/entity_reference_display": "1.x",
"drupal/config_filter": "1.x",
"drupal/admin_toolbar": "1.x"
"drupal/admin_toolbar": "1.x",
"drupal/field_group": "3.x"
},
"require-dev": {
"drupal/devel": "1.*"
Expand Down
65 changes: 64 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 76 additions & 14 deletions config/sync/core.entity_form_display.node.art.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,78 @@ dependencies:
- node.type.art
module:
- datetime
- field_group
- path
- text
third_party_settings:
field_group:
group_content_news:
children:
- group_main_content_news
- group_categorisation
- group_referenced_content_news
parent_name: ''
weight: 0
format_type: tabs
format_settings:
id: ''
classes: ''
direction: vertical
label: Content
region: content
group_main_content_news:
children:
- title
- field_publish_date
- body
- field_list_text
parent_name: group_content_news
weight: 6
format_type: tab
format_settings:
id: ''
classes: ''
formatter: closed
description: ''
required_fields: true
label: 'Main Content'
region: content
group_categorisation:
children:
- field_news_category
parent_name: group_content_news
weight: 7
format_type: tab
format_settings:
id: ''
classes: ''
formatter: closed
description: ''
required_fields: true
label: Categorisation
region: content
group_referenced_content_news:
children:
- field_related_news
parent_name: group_content_news
weight: 8
format_type: tab
format_settings:
id: ''
classes: ''
formatter: closed
description: ''
required_fields: true
label: 'Referenced Content'
region: content
id: node.art.default
targetEntityType: node
bundle: art
mode: default
content:
body:
type: text_textarea_with_summary
weight: 8
weight: 4
settings:
rows: 9
summary_rows: 3
Expand All @@ -29,35 +91,35 @@ content:
region: content
created:
type: datetime_timestamp
weight: 4
weight: 6
settings: { }
third_party_settings: { }
region: content
field_list_text:
weight: 1
weight: 5
settings:
rows: 5
placeholder: ''
third_party_settings: { }
type: string_textarea
region: content
field_news_category:
weight: 2
type: entity_reference_autocomplete
weight: 4
region: content
settings:
match_operator: CONTAINS
size: 60
placeholder: ''
third_party_settings: { }
type: entity_reference_autocomplete_tags
region: content
field_publish_date:
weight: 10
weight: 3
settings: { }
third_party_settings: { }
type: datetime_default
region: content
field_related_news:
weight: 9
weight: 11
settings:
match_operator: CONTAINS
size: 60
Expand All @@ -67,42 +129,42 @@ content:
region: content
path:
type: path
weight: 7
weight: 9
settings: { }
third_party_settings: { }
region: content
promote:
type: boolean_checkbox
settings:
display_label: true
weight: 5
weight: 7
third_party_settings: { }
region: content
status:
type: boolean_checkbox
settings:
display_label: true
weight: 121
weight: 13
third_party_settings: { }
region: content
sticky:
type: boolean_checkbox
settings:
display_label: true
weight: 6
weight: 8
third_party_settings: { }
region: content
title:
type: string_textfield
weight: 0
weight: 2
settings:
size: 60
placeholder: ''
third_party_settings: { }
region: content
uid:
type: entity_reference_autocomplete
weight: 3
weight: 5
settings:
match_operator: CONTAINS
size: 60
Expand Down
Loading