Skip to content

Create user entity from JSON

Version v1

Custom event U1Create user entity specificSave the userSuccess messageSwitch to user1Custom event U2Switch to user1Unserialize json for userSave userSuccess Message

Instead of downloading the archive, you can download and apply this model as a recipe (Drupal 10.3 or later):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Import recipe
composer require drupal-eca-recipe/eca_lib_0030

# Enable recipe with Drush (requires version 13 or later):
drush recipe ../recipes/eca_lib_0030

# Enable recipe without Drush:
cd web && php core/scripts/drupal recipe ../recipes/eca_lib_0030

# Rebuilding caches is optional, sometimes required:
drush cr

Purpose

This model demonstrates how to create a content entity with data from a JSON string. It also shows why creating a user entity "the classic way" doesn't work, more about the reasons for that are explained in the video.

The creation of this module was recorded and the video with additional explanations can be watch here.

Dependencies

  • module
    • eca_base
    • eca_content
    • eca_render
    • eca_user
    • serialization

Used plugins

Events

Actions

Changelog

v1

Initial version