Commit b848f6fc authored by Sourav Paul's avatar Sourav Paul Committed by Jakob P
Browse files

Issue #3463291 by japerry: Deprecate the admin_toolbar_links_access_filter module

parent a58a23dd
Loading
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -28,3 +28,16 @@ function admin_toolbar_update_8002() {
    $config->save(TRUE);
  }
}

/**
 * Uninstall Admin Toolbar Links Access Filter for Drupal 10.3+
 *
 * @see https://www.drupal.org/project/admin_toolbar/issues/3463291
 */
function admin_toolbar_update_8003() {
  if (version_compare(\Drupal::VERSION, '10.3.0', '>=')) {
    /** @var \Drupal\Core\Extension\ModuleInstallerInterface $module_installer */
    $module_installer = \Drupal::service('module_installer');
    $module_installer->uninstall(['admin_toolbar_links_access_filter']);
  }
}
 No newline at end of file
+0 −55
Original line number Diff line number Diff line
# Admin Toolbar Tools

The Admin Toolbar Links Access Filter module Provides a workaround for the
common problem that users with 'Use the administration pages and help'
permission see menu links they don't have access permission for. Once the issue
[296693](https://www.drupal.org/node/296693) be solved, this module will be deprecated.

For a full description of the module, visit the
[project page](https://www.drupal.org/project/admin_toolbar).

Submit bug reports and feature suggestions, or track changes in the
[issue queue](https://www.drupal.org/project/issues/search/admin_toolbar).

## Table of contents

- Requirements
- Installation
- Configuration
- Maintainers

## Requirements

This module requires the following modules:

- [Admin Toolbar](https://www.drupal.org/project/admin_toolbar)

## Installation

Install as you would normally install a contributed Drupal module. For further
information, see
[Installing Drupal Modules](https://www.drupal.org/docs/extending-drupal/installing-drupal-modules).

## Configuration

No configuration is needed.

## Maintainers

Current maintainers:

- [Romain Jarraud (romainj)](https://www.drupal.org/u/romainj)
- [Adrian Cid Almaguer (adriancid)](https://www.drupal.org/u/adriancid)
- [Wilfrid Roze (eme)](https://www.drupal.org/u/eme)
- [bilel khalil (bolbol)](https://www.drupal.org/u/bolbol)
- [fethi.krout (fethi.krout)](https://www.drupal.org/u/fethi.krout)
- [Mohamed Anis Taktak (matio89)](https://www.drupal.org/u/matio89)
- [Thomas MUSA (Musa.thomas)](https://www.drupal.org/u/musathomas)

Supporting organizations:

- [emerya](https://www.drupal.org/emerya) Created this module for you!
- [Trained People](https://www.drupal.org/trained-people) Sponsored the module development
- [Drupiter](https://www.drupal.org/drupiter) Sponsored the module development
- [Dropteam](https://www.drupal.org/dropteam) Sponsored the module development
- [Alliance of Digital Builders (AODB)](https://www.drupal.org/alliance-of-digital-builders-aodb) Sponsored the module development
+3 −1
Original line number Diff line number Diff line
name: Admin Toolbar Links Access Filter
description: Provides a workaround for the common problem that users with 'Use the administration pages and help' permission see menu links they don't have access permission for. Once the issue <a href='https://www.drupal.org/node/296693'>https://www.drupal.org/node/296693</a> be solved, this module will be deprecated.
description: Provides a workaround for the common problem that users with 'Use the administration pages and help' permission see menu links they don't have access permission for. Deprecated from Drupal 10.3 and above.
package: Administration
type: module
core_version_requirement: ^9.5 || ^10
dependencies:
  - admin_toolbar:admin_toolbar
lifecycle: deprecated
lifecycle_link: 'https://www.drupal.org/project/drupal/issues/296693'