SamSam

Results 15 comments of SamSam

The "PRE_COPY" event is fired when you paste the copied object. I feel like this event needs to be rename "PRE_PASTE" and "POST_PASTE" since the event is triggered chen you...

Maybe we could have the help of @fszenborn for this improvement ? If you have time of course 😊

Hi @Jurrie, Thank you for the detailed tutorial. I am also interested in implementing such a method to automate payment. However, unfortunatly, I can not run Android Studio or even...

Do you think it would be possible to pass parameters from a javascript event listener in the admin UI interface ? My use case is : I want to be...

I have tried to implement my EventListener with [DirtyIndicatorInterface](https://github.com/pimcore/pimcore/blob/11.x/models/Element/DirtyIndicatorInterface.php) and use trait [DirtyIndicatorTrait](https://github.com/pimcore/pimcore/blob/11.x/models/Element/Traits/DirtyIndicatorTrait.php) but the only field marked as dirty is "userModification". If I change something on my dataObject, the...

Ok, so I debugged the code a little bit and the "problem" is actually simple (or so it seems) : For some DataTypes (`ManyToOneRelation`, `AdvancedManyToManyRelation`, `ManyToManyObjectRelation`... and surely others), the...

Would it be ok to modify setters from this : ```php public function setMyField($myField) { $this->myField = $myField; return $this; } ``` to this : ```php public function setMyField($myField) {...

We would only have to add this ```php if ($this instanceof DataObject\ClassDefinition\Data\PreSetDataInterface) { $code .= "\t" . '$this->' . $key . ' = ' . '$fd->preSetData($this, $' . $key ....

I will provide a PR, I'll try to see what I can do about the reload problem as well

In case you are wondering, this is the line causing this issue : https://github.com/elements-at/ProcessManager/blob/55b332d3b3b48bb7a59258c361da6b0f177b95fd/src/ExecutionTrait.php#L346