Missing 'config_export' definition

Created on 2 March 2023, about 2 years ago
Updated 15 May 2023, almost 2 years ago

Problem/Motivation

Error displayed when saving a new excluded date:

The website encountered an unexpected error. Please try again later.

Drupal\Core\Config\Schema\SchemaIncompleteException: Entity type 'Drupal\recurring_events\Entity\ExcludedDates' is missing 'config_export' definition in its annotation in Drupal\Core\Config\Entity\ConfigEntityBase->toArray() (line 253 of core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php).

Steps to reproduce

Attempt to create a new excluded (and included) date.

Proposed resolution

Reviewing the Drupal docs ( https://www.drupal.org/docs/drupal-apis/configuration-api/creating-a-con... ), it states:

From Drupal 8.6.x, it is recommended that all configuration entity types have a config_export property in their annotation (see: https://www.drupal.org/node/2949023 ).

See also Configuration entity can declare which properties need export using annotations .

Add the following to src/Entity/ExcludedDates.php and src/Entity/IncludedDates.php:

 * @ConfigEntityType(
 * ...
 *   },
 *   config_export = {
 *     "id",
 *     "label",
 *     "start",
 *     "end",
 *   },
 *   links = {
 * ...

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Fixed

Version

2.0

Component

Recurring Events (Main module)

Created by

🇺🇸United States Christian DeLoach

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

Comments & Activities

Production build 0.71.5 2024