Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -0,0 +1,10 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
id: comment_delete_action
|
||||
label: 'Delete comment'
|
||||
type: comment
|
||||
plugin: entity:delete_action:comment
|
||||
configuration: { }
|
|
@ -6,5 +6,5 @@ dependencies:
|
|||
id: comment_publish_action
|
||||
label: 'Publish comment'
|
||||
type: comment
|
||||
plugin: comment_publish_action
|
||||
plugin: entity:publish_action:comment
|
||||
configuration: { }
|
||||
|
|
|
@ -6,5 +6,5 @@ dependencies:
|
|||
id: comment_save_action
|
||||
label: 'Save comment'
|
||||
type: comment
|
||||
plugin: comment_save_action
|
||||
plugin: entity:save_action:comment
|
||||
configuration: { }
|
||||
|
|
|
@ -6,5 +6,5 @@ dependencies:
|
|||
id: comment_unpublish_action
|
||||
label: 'Unpublish comment'
|
||||
type: comment
|
||||
plugin: comment_unpublish_action
|
||||
plugin: entity:unpublish_action:comment
|
||||
configuration: { }
|
||||
|
|
1579
web/core/modules/comment/config/optional/views.view.comment.yml
Normal file
1579
web/core/modules/comment/config/optional/views.view.comment.yml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -15,10 +15,14 @@ field.widget.settings.comment_default:
|
|||
type: mapping
|
||||
label: 'Comment display format settings'
|
||||
|
||||
# @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0.
|
||||
# @see https://www.drupal.org/node/2919303
|
||||
action.configuration.comment_publish_action:
|
||||
type: action_configuration_default
|
||||
label: 'Publish comment configuration'
|
||||
|
||||
# @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0.
|
||||
# @see https://www.drupal.org/node/2919303
|
||||
action.configuration.comment_save_action:
|
||||
type: action_configuration_default
|
||||
label: 'Save comment configuration'
|
||||
|
@ -34,10 +38,18 @@ action.configuration.comment_unpublish_by_keyword_action:
|
|||
type: string
|
||||
label: 'Keyword'
|
||||
|
||||
# @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.0.
|
||||
# @see https://www.drupal.org/node/2919303
|
||||
action.configuration.comment_unpublish_action:
|
||||
type: action_configuration_default
|
||||
label: 'Unpublish comment configuration'
|
||||
|
||||
# @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.0.
|
||||
# @see https://www.drupal.org/node/2934349
|
||||
action.configuration.comment_delete_action:
|
||||
type: action_configuration_default
|
||||
label: 'Delete comment configuration'
|
||||
|
||||
comment.type.*:
|
||||
type: config_entity
|
||||
label: 'Comment type settings'
|
||||
|
@ -101,7 +113,10 @@ field.field_settings.comment:
|
|||
label: 'Mode'
|
||||
form_location:
|
||||
type: boolean
|
||||
label: ' Allow comment title'
|
||||
label: 'Allow comment title'
|
||||
preview:
|
||||
type: integer
|
||||
label: 'Preview comment'
|
||||
|
||||
field.formatter.settings.comment_permalink:
|
||||
type: field.formatter.settings.string
|
||||
|
|
|
@ -16,6 +16,14 @@ views.field.comment_entity_link:
|
|||
type: boolean
|
||||
label: 'Show teaser-style link'
|
||||
|
||||
views.field.comment_bulk_form:
|
||||
type: views_field_bulk_form
|
||||
label: 'Comment bulk form'
|
||||
|
||||
views.field.commented_entity:
|
||||
type: views.field.field
|
||||
label: 'Commented entity'
|
||||
|
||||
views.field.comment_last_timestamp:
|
||||
type: views.field.date
|
||||
label: 'Last comment date'
|
||||
|
|
Reference in a new issue