Documentation

Back-end module in the extension

Or copy link

Back-end module in the extension

Estimated reading: minutes 5 views

5 views
Min read
  1. 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.
  2. It doesn’t seem user-friendly for users who are not so familiar with TYPO3.
  3. 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.
  4. There are 2 possibilities to create the backend module
    1. 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
    2. 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
  5. Here we are going to create the backend module with extbase.
Share

Leave a Comment