Gedmo Sluggable does not support inherited fields

0 votes
asked Oct 19, 2016 in Bug report by jwagner (3,630 points)

ORM Designer version 3.2.7.1338, MVC: Symfony3, ORM: Doctrine2

Sample project: https://support.skipper18.com/?qa=blob&qa_blobid=2312863847899793239

When I use the Gedmo Sluggable extension, I want to be able to select inherited fields as well. This is currently not possible in Skipper.

Expected output in SampleEntity:

/**
 * @ORM\Column(type="string", unique=true, length=255, nullable=false)
 * @Gedmo\Slug(fields={"firstName", "lastName"})
 */
private $name;
commented Oct 19, 2016 by ludek.vodicka Skipper developer (140,450 points)

HI Jorn, unfortunately this is the still the same limitation like in another cases when inherited fields aren't available for some operations. But I believe that thanks to current refactoring we're working on we will be able to implement this feature more easily.

commented Oct 19, 2016 by jwagner (3,630 points)

Thanks for replying so quickly! I'm looking forward to the new refactored version, then. ;)

Please log in or register to answer this question.

...