/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Api/ImageProcessorInterface.php
43 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Api; use Magento\Framework\Api\Data\ImageContentInterface; use Magento\Framework\Exception\InputException; /** * Interface ImageProcessorInterface * * @api * @since 100.0.2 */ interface ImageProcessorInterface { /** * Process Data objects with image type custom attributes and update custom attribute values with saved image paths * * @param CustomAttributesDataInterface $dataObjectWithCustomAttributes * @param string $entityType entity type * @param CustomAttributesDataInterface $previousCustomerData * @return CustomAttributesDataInterface */ public function save( CustomAttributesDataInterface $dataObjectWithCustomAttributes, $entityType, ?CustomAttributesDataInterface $previousCustomerData = null ); /** * Process image and save it to the entity's media directory * * @param string $entityType * @param ImageContentInterface $imageContent * @return string Relative path of the file where image was saved * @throws InputException */ public function processImageContent($entityType, $imageContent); }