I'm using DoctrineExtensions with StofDoctrineExtensionsBundle to get the soft-deleteable behaviour.
It works really well in the frontend of my application.
In the backend i need the option to "hard" delete entities.
I have disabled the filter in my admin controllers (i use SonataAdmin):
$filters = $this->getModelManager()->getEntityManager($this->getClass())->getFilters();
if (array_key_exists('softdeleteable', $filters->getEnabledFilters())) {
$filters->disable('softdeleteable');
}
This works (soft deleted entities show up in the lists), but when i try to delete it, the entity does get soft-deleted again. How can i force a "hard" delete?