Page 1 of 1

Extend Admin Customer Standard Administration Interface

Posted: 16 Jan 2020, 10:34
by barbala4o
Laravel 6.*, Aimeos ~2019.10, php 7.3-7.4 & windows 10

Hello,
I have created a new Standard Interface
...\ext\ai-myextension\admin\jqadm\src\Admin\JQAdm\Customer\Standard.php
but when i search in that table the
....\ext\ai-admin-jqadm\admin\jqadm\src\Admin\JQAdm\Customer\Standard.php
always gets triggered. How do I override this. This is in \ext\ai-myextension\config\admin.php

Code: Select all

return [
	'jqadm' => [
        'customer' => [
            'standard' => [],
        ]
	],
	'jsonadm' => [
	],
];
I can't find instructions anywhere.

Thank you.

Re: Extend Admin Customer Standard Administration Interface

Posted: 17 Jan 2020, 09:34
by aimeos
It's the same as for managers:
- Rename your file to "Myproject" or anything else different from "Standard"
- Add that class name to the ./ext/my-extension/config/admin.php file:

Code: Select all

return [
    'jqadm' => [
        'customer' => [
            'name' => 'Myproject'
        ]
    ]
];

Re: Extend Admin Customer Standard Administration Interface

Posted: 20 Jan 2020, 16:36
by barbala4o
I forgot to include my config folder in the maifest.php file. Now it works. Thank you.