Problem/Motivation

The channel search block isn't set up at the moment.

It should be changed to be just for entry entities, as #3590685: enable views exposed form block and place it added the Views exposed block.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Comments

joachim created an issue. See original summary.

joachim’s picture

There's useful code in ensureFacetBlock() which is about to get removed, including:

    // Figure out a region, because core still doesn't provide a way to get a
    // sidebar region.
    $regions = system_region_list($theme);
    if (isset($regions['sidebar_first'])) {
      $region = 'sidebar_first';
    }
    elseif ($matches = preg_grep('/^sidebar/', array_keys($regions))) {
      $region = reset($matches);
    }
    else {
      $region = system_default_region($theme);
    }
joachim’s picture

Hmm actually to preserve functionality, this might all have to be done in the Facets 3 issue!

joachim’s picture

Title: set up channel search block » set up channel search block for entry entities
Issue summary: View changes
joachim’s picture

Status: Active » Fixed

Now that this issue is closed, review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, credit people who helped resolve this issue.

  • joachim committed 778376f9 on 1.0.x
    feat: #3589779 add placement of channel search block for entry entities...