The "file_validate_extensions" plugin does not exist

Created on 16 February 2025, about 2 months ago

Problem/Motivation

When add a custom icon to the theme configuration, then the error on log
Uncaught PHP Exception Drupal\\Component\\Plugin\\Exception\\PluginNotFoundException: "The "file_validate_extensions" plugin does not exist. Valid plugin IDs for Drupal\\Core\\Validation\\ConstraintManager are: Callback, Blank, NotBlank, Email, Choice, Image,....

Steps to reproduce

On theme configuration, try to set a custom icon

Proposed resolution

The function is deprecated in Drupal 11: https://api.drupal.org/api/drupal/core%21modules%21file%21file.module/fu...
Need to use the 'file.validator' service instead https://www.drupal.org/node/3363700

Change in the file
includes/theme-settings.inc
at line # 1272
from

$validators = ['file_validate_extensions' => [implode(' ', $supported_extensions)]];

to

$validators = ['FileExtension' => [implode(' ', $supported_extensions)]];

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

2.12

Component

Code

Created by

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024