Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add new module to opencart administration?

Tags:

php

opencart

I want to add a sub menu item "Locations" to "Catalog" menu item in opencart administration. On selecting locations, I want to see my own location management view page which inetracts with my own locations table in the opencart database.

Please let me know where and what mvc's to create to achieve this functionality in open cart. Thank you.

like image 581
exception Avatar asked Feb 20 '23 05:02

exception


1 Answers

How to create a opencart admin module??

You can simply do this by adjusting:

Admin > controller > view > template > common > header.tpl

You can simply make adjustments to the menu on this page (static changes). To actually create modules for you and your staff etc. Then follow the tutorial of MVC posted on this page:

How to create a custom Admin Page in Opencart?

like image 199
TheBlackBenzKid Avatar answered Feb 22 '23 22:02

TheBlackBenzKid