Extend frontend controller ?

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
MikaelNazarenko
Expert
Posts: 274
Joined: 27 Jun 2019, 16:19

Extend frontend controller ?

Post by MikaelNazarenko » 09 Sep 2019, 18:39

Unfortunately I can't find how to extend front-end controller. I have created new controller with another name on my extension:
Aimeos\Controller\Frontend\Basket\Basket and extended it from original Aimeos\Controller\Frontend\Basket\Standard. But I don't know where I should configure it to make it use my new controller (

MikaelNazarenko
Expert
Posts: 274
Joined: 27 Jun 2019, 16:19

Re: Extend frontend controller ?

Post by MikaelNazarenko » 10 Sep 2019, 06:38

This is the solution:

Code: Select all

	'controller' => [
	    'frontend' => [
	        'basket' => [
	            'name' => 'Basket'
            ]
        ]
	],

Post Reply