How to create a Magento module that can CRUD create a user table inside the admin panel?

I follow the tutorial, but it does not work with the latest version of Magento 1.7, and no one here can help me with this: (so I decided to ask a new question from scratch without the code in it.

I already know how to make Magento modules (to some extent), since I created a working interface for the interface, but I need one for the backend admin panel, where I can create, edit and delete a user table inside the database.

From now on, suppose I configured config.xml and got an empty admin page to load (or you couldn’t), but it would be easier to just say that I just have an empty admin page and I need the rest of the code to fill the contents and empty logic.

+6
source share
1 answer

The best example of a complete CRUD implementation, including installing a script to create a table, model classes, and a full administrator form for viewing / editing / deleting and exporting records, is provided by the Creator module. moduleCreator will create your module for you and then fill it with the full back end and front end (if necessary). You can get moduleCreator from Magento Connect or an updated version from GitHub .

+5
source

Source: https://habr.com/ru/post/923832/


All Articles