Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zend_Tool remove controller/action

I made a controller with Zend_Tool, but now I want to delete the controller. I know i can just delete the file, but I was wondering if there was a way to do this with Zend_Tool, so i don't need to edit the .zfproject.xml myself.

Thanks!

like image 904
priktop Avatar asked Oct 11 '22 11:10

priktop


1 Answers

You have to manually delete it.

This functionality is slated for 1.10. It was left out of the 1.8 and 1.9 release for a couple of good reasons. Since deleting is a pretty irreversible action, and sometimes is also a recursive action- we wanted to ensure that the console/cli interface at least had the capability to ask the user if deleting is OK, in other words confirming the decision to delete something. This way, people will not accidentally delete things they will not be able to recover.

-ralph

This is a post back in 1.10 but now it's in 1.11 and you still need to do it manually!

like image 63
KJYe.Name Avatar answered Oct 18 '22 09:10

KJYe.Name