A site builder can customize (restrict) the per-entity Rabbit Hole settings when these are exposed

Created on 9 February 2025, about 2 months ago

Problem/Motivation

In many cases the way a content editor can override default rabbit hole settings should be restricted to only 'access denied' when the default is show the page. Or to only be able to show the page when the default is to do access denied. That is, the flexibility of the Rabbit Hole settings for individual node, taxonomy term, or other content entity should be narrowed by a site builder, so unnecessary options are not seen in day-to-day use.

Steps to reproduce

Proposed resolution

Build this feature into Rabbit Hole, or make a contrib module that does this.

Probably makes sense to do this from the main Rabbit Hole settings page, but could also make it a feature of the Rabbit Hole settings field form widget.

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States mlncn Minneapolis, MN, USA

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

Comments & Activities

  • Issue created by @mlncn
  • πŸ‡ΊπŸ‡ΈUnited States mlncn Minneapolis, MN, USA

    Will leave my custom code here for now:

    
    /**
     * Implements hook_form_BASE_FORM_ID_alter() for taxonomy term add/edit forms.
     *
     * Thanks to https://www.bryanbraun.com/2013/08/17/using-hook-form-base-form-id-alter/
     *
     * Really wonder if there is a bundle class way to get at these forms.
     */
    function massdesigngroup_form_taxonomy_term_form_alter(&$form, FormStateInterface $form_state, $form_id) {
      // If we have an organization term, restrict Rabbit Hole options to default or display.
      $vocab = $form['vid']['#value'] ?? '';
      if ($vocab === 'organizations' && isset($form['rabbit_hole__settings']['widget'][0]['action']['#options'])) {
        unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['page_not_found']);
        unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['page_redirect']);
        // Access Denied is an option we want, but only as the global behaviors default.
        unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['access_denied']);
      }
    }
    
Production build 0.71.5 2024