URL copied to clipboard
Back-end module in the extension
5 views
__readtime__ Min
read
- After going through the doc. till here, it is now in your knowledge that we need to use the list module to perform the CRUD for employees.
- It doesn’t seem user-friendly for users who are not so familiar with TYPO3.
- So here the Backend module comes in the picture which is user-friendly, by using this, the user can do the CRUD from admin panel and it will be more convenient.
- There are 2 possibilities to create the backend module
- Create a module with extbase (extbase will used here). Ref. link: https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ExtensionArchitecture/HowTo/BackendModule/CreateModuleWithExtbase.html#backend-modules-extbase
- Create a module with core functionality (no extbase will used here). Ref. link: https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ExtensionArchitecture/HowTo/BackendModule/CreateModule.html#backend-modules-template-without-extbase
- Here we are going to create the backend module with extbase.