TYPO3 Extbase individual code on backend-deletion of an object
问题 I would like to execute some individual code when one of my Extbase domain objects is deleted from the list view in TYPO3 backend. Thought that it could / would work by overwriting the remove( $o ) method in the according repository like public function remove( $object ) { parent::__remove( $object ); do_something_i_want(); } , but that won't work I guess. Looks like the repository-methods are only called / used by actions of my extension (e.g. if I had some delete-action in a FE- or BE