Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modify controller in Opencart without touching the core?

Is there a way for developers to modify controller and model methods in Opencart without having to touch the core files? Much like the way WP has the functions.php file where you can modify the guts of WP without worrying about future upgrades overwriting your code.

Here are some examples which I think every developer needs to have in their Opencart toolkit:

  • The ability to update values
  • Run custom SQL queries
  • Update logic of the program layer
  • Extend the system further
like image 383
enchance Avatar asked Nov 12 '22 20:11

enchance


1 Answers

Take a look at vQmod. This is the primary way that is used by most developers so as not to modify core code

like image 194
Jay Gilford Avatar answered Nov 15 '22 11:11

Jay Gilford