in zend framework you can easily return $this->notFoundAction();
to return 404 (not found). The 'not_found_template'
application config key is used to render the content.
We want to do the same but with a different status code 410 (gone). I cant figure out how to do this. I tried to return my own response but i cant set my view template.
What would be the prefered way to do this?