Product import
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Evomedien\Vitec\Controller\Backend\ProductTextImportController;
|
||||
use Evomedien\Vitec\Controller\Backend\StructuredDataController;
|
||||
|
||||
/**
|
||||
@@ -16,4 +17,14 @@ return [
|
||||
'path' => '/vitec/structureddata/generate',
|
||||
'target' => StructuredDataController::class . '::generate',
|
||||
],
|
||||
// Click-to-edit in the product text import's "Current value" column:
|
||||
// read the full raw value / write one field through DataHandler.
|
||||
'vitec_product_field_get' => [
|
||||
'path' => '/vitec/product/field/get',
|
||||
'target' => ProductTextImportController::class . '::fieldGet',
|
||||
],
|
||||
'vitec_product_field_save' => [
|
||||
'path' => '/vitec/product/field/save',
|
||||
'target' => ProductTextImportController::class . '::fieldSave',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -16,3 +16,9 @@ services:
|
||||
TYPO3\CMS\Backend\View\BackendLayoutView:
|
||||
alias: Evomedien\Vitec\View\VitecBackendLayoutView
|
||||
public: true
|
||||
|
||||
# Headless resolves the meta handler via this interface (cacheable listener
|
||||
# AND the USER_INT middleware). Pointing the alias at our subclass mirrors
|
||||
# the final page title (seo.title) into meta.title as well.
|
||||
FriendsOfTYPO3\Headless\Seo\MetaHandlerInterface:
|
||||
alias: Evomedien\Vitec\Seo\VitecMetaHandler
|
||||
|
||||
Reference in New Issue
Block a user