Magento – ny way to delete/remove admin user programmatically

admin

I wanted to delete an admin user programmatically, I have only FTP access.

Best Answer

Although untested it stands to reason that you can use the normal Magento flow like with all models

Mage::getModel('admin/user')->load('user id')->delete();

But again, I didn't test it.

Related Topic