"ctools.block_plugin.*" config schema doesn't inherit from "block.settings.*"

Created on 12 February 2016, about 9 years ago
Updated 12 August 2024, 8 months ago

Problem/Motivation

When trying to import config for a page manager variant that contains a views block, I am getting a missing schema error for 'views_label' and 'items_per_page' on the ctools block.

Proposed resolution

I don't know to be honest. This can be fixed by adding the schema for the 2 properties in ctools.schema.yml, but I am not sure that is the correct place. I feel like this should be fixed in ctools_views but I am not sure where.

🐛 Bug report
Status

Needs work

Version

4.0

Component

Views Content

Created by

🇬🇧United Kingdom yanniboi UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇷🇺Russia sorlov

    Still got this issue with panels_variant display variant used

    "ctools.block_plugin" doesn't inherit from "block.settings.views_block:*"

  • 🇷🇺Russia sorlov

    Got the similar issue with panels_everywhere_variant display variant



    system_branding_block
    is used there and config schema seems to be ok for this block in system.schema.yml:

    block.settings.system_branding_block:
      type: block_settings
      label: 'Branding block'
      constraints:
        FullyValidatable: ~
      mapping:
        use_site_logo:
          type: boolean
          label: 'Use site logo'
        use_site_name:
          type: boolean
          label: 'Use site name'
        use_site_slogan:
          type: boolean
          label: 'Use site slogan'
    

    but looks like ctools.block_plugin.* schema doesn't inherit it

  • 🇷🇺Russia ilya.no

    Attaching patch with additional option added to schema.

  • 🇷🇺Russia sorlov

    @ilya.no issue can happen not only for views_block schema, but for other blocks as well

  • 🇫🇷France andypost
    +++ b/modules/ctools_views/ctools_views.module
    @@ -21,6 +21,23 @@ function ctools_views_views_plugins_display_alter(&$displays) {
    +  $definitions['ctools.block_plugin.*']['mapping']['views_label'] = [
    +    'type' => 'string',
    +    'label' => 'Views label'
    ...
    +  $definitions['ctools.block_plugin.*']['mapping']['items_per_page'] = [
    +    'type' => 'string',
    +    'label' => 'Items per page'
    ...
    +  $definitions['ctools.block_plugin.*']['mapping']['exposed'] = [
    +    'type' => 'sequence',
    +    'label' => 'Exposed filter values',
    +    'sequence' => [
    +      'type' => 'views.filter.[plugin_id]',
    

    why defined this way? I bet it may inherit it from views plugins

    SO the module will just extend original schema keeping default properties inline with base definitions

  • 🇷🇺Russia sorlov

    currently we have next definition in ctools.schema.yml

    ctools.block_plugin.*:
      type: block.settings.[id]
      mapping:
        region:
          type: string
          label: 'Region'
        weight:
          type: integer
          label: 'Weight'
        uuid:
          type: string
          label: 'UUID'
        context_mapping:
          type: sequence
          label: 'Context assignments'
          sequence:
            type: string
    
Production build 0.71.5 2024