override save, get functions of Admin Product.
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!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
override save, get functions of Admin Product.
Hi,
I need to override save, get functions of Admin Product.
./ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Standard.php
I created extension, but can anyone just provide me sample for this and guide me step by step please?
I need to override save, get functions of Admin Product.
./ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Standard.php
I created extension, but can anyone just provide me sample for this and guide me step by step please?
Re: override save, get functions of Admin Product.
Here's a thread that could help you:
post6044.html#p6044
post6044.html#p6044
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: override save, get functions of Admin Product.
Hi,
As per the given guide, i created and copy "./ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Standard.php" into "./ext/my-custom-ext/admin/jqadm/src/Admin/JQAdm/Product/ListStandard.php". Then changed the Class name into Liststandard.
Can you please just guide me what information should i require to add in configuration file (i am using laravel). So i can access custom extension -> product -> get function.
As per the given guide, i created and copy "./ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Standard.php" into "./ext/my-custom-ext/admin/jqadm/src/Admin/JQAdm/Product/ListStandard.php". Then changed the Class name into Liststandard.
Can you please just guide me what information should i require to add in configuration file (i am using laravel). So i can access custom extension -> product -> get function.
Re: override save, get functions of Admin Product.
Thanks for the guide and this work has been done.
Re: override save, get functions of Admin Product.
To your ./config/shop.php add:
to configure the name of your new class to be used instead of the Standard class.
Code: Select all
'admin' => [
'jqadm' => [
'plugin' => [
'name' => 'ListStandard'
]
]
],
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
