If you wonder about routing in OXID eshops or how the URL structure is here are some hints:
OXIDs MVC, well thats some kind of different naming and you have to get used to:
the M (Model) you find in /core
the V you find in in your templates in /out, there the main view is called the same as your controller, given the controller has a render() method.
/views/details => /out/[templatename]/page/details.tpl
the C (Controller) you find in /views (what? oyerywell!)
like /views/details.php
The routing itself is like so:
Continue reading “OXID eshop routing”