- Issue created by @Christian.wiedemann
- @christianwiedemann opened merge request.
- πΊπΈUnited States SocialNicheGuru
Is this an upstream issue that should be addressed in group 2?
The update hook social_group_flexible_group_update_130003 fails if we subclass Socal\Group and set this as a new base class
Create a class
namespace Drupal\mkat_group\Entity;
use Drupal\social_group\Entity\Group as SocialGroup;
/**
* Bundle class for groups.
*/
class Group extends SocialGroup {
...
}
Use
\Drupal::entityTypeManager()->getStorage('group')->load($item->gid);
Instead of
Group::load($item->gid);
There is a similar issue in drupal core:
https://www.drupal.org/project/drupal/issues/3127026 π Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay class does not correspond to an entity type. Needs work
Active
13.0
Code (back-end)
Is this an upstream issue that should be addressed in group 2?