Allow config entities in Collections

Created on 14 June 2022, almost 3 years ago
Updated 6 August 2024, 8 months ago

Menus and Vocabularies can be very useful to add to collections.

Feature request
Status

Active

Version

3.0

Component

Code

Created by

🇺🇸United States jeffam

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇮🇹Italy kopeboy Milan

    Module page states the module can already collect config entities.. but it doesn't seem so.

  • 🇺🇸United States jeffam

    At the moment, you can only add them programmatically. Here's a snippet from a project that does this:

    $vocab = $this->entityTypeManager->getStorage('taxonomy_vocabulary')->create([
            'langcode' => 'en',
            'status' => TRUE,
            'name' => 'My taxonomy vocabulary',
            'vid' => 'my_taxonomy',
          ]);
          $vocab->save();
    
          if ($vocab) {
            // Add the vocab to this new collection.
            $collection_item_vocab = $this->entityTypeManager->getStorage('collection_item')->create([
              'type' => 'default',
              'collection' => 1,
              'canonical' => TRUE,
              'weight' => 10,
            ]);
    
            $collection_item_vocab->item = $vocab;
            $collection_item_vocab->save();
          }
    
  • 🇺🇸United States jeffam
Production build 0.71.5 2024