I would need to fetch certain details from mshop_catalog and mshop_product tables. Can I get the repository names of these for object injection??
Instead, you should use the Aimeos managers to get the data you need:
https://aimeos.org/docs/Developers/Library/Managing_items
To get the necessary Aimeos context in TYPO3, use
Code: Select all
$config = \Aimeos\Aimeos\Base::getConfig();
$context = \Aimeos\Aimeos\Base::getContext($config);
or if you extend from "Aimeos\Aimeos\Controller\AbstractController":
Code: Select all
$this->getContext();