How to modify admin dashboard

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
lucadambros
Posts: 44
Joined: 24 Jun 2019, 14:46

How to modify admin dashboard

Post by lucadambros » 24 Jun 2019, 14:51

Hi to everyone,
I'm new to Aimeos and I need help. I want to modify the admin dashboard by creating a new extension (so I can update Aimeos in the future).
I know that I have to use the extension generator but after that I don't know how to do the remaining part.
Is that possible? Can someone send me a step-by-step guide to solve my "problem"?

Thank you very much

User avatar
aimeos
Administrator
Posts: 7836
Joined: 01 Jan 1970, 00:00

Re: How to modify admin dashboard

Post by aimeos » 24 Jun 2019, 16:32

Create an Aimeos extension for your project and create your additionall theme CSS/JS files in the same directory structure as in the ai-admin-jqadm extension. Then, in your own extension, add your new files in the ./admin/jqadm/ manifest.jsb2 file and make sure, the ./manifest.php file contains:

Code: Select all

'custom' => array(
	'admin/jqadm' => array(
		'admin/jqadm/manifest.jsb2',
	),
),
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

lucadambros
Posts: 44
Joined: 24 Jun 2019, 14:46

Re: How to modify admin dashboard

Post by lucadambros » 25 Jun 2019, 06:31

Can you please explain how this can override the aimeos extension?
Can the extension also override the controller?

Thanks

Edit: I solved the first problem but I still don't know how to extend controllers

Edit: Yes, the extension can override the controller laravel-package-f18/how-can-i-override- ... t2028.html

Post Reply