MCPcopy Create free account
hub / github.com/Genaker/magento_gridjs / DataProcessorInterface

Interface DataProcessorInterface

Api/DataProcessorInterface.php:6–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4use Magento\Framework\View\Element\Block\ArgumentInterface;
5
6interface DataProcessorInterface extends ArgumentInterface
7{
8 /**
9 * Process the data for a specific field
10 *
11 * @param string $field
12 * @param mixed $value
13 * @param array $row
14 * @return string
15 */
16 public function process(string $field, $value, array $row = []): string;
17
18 /**
19 * Return the execution order (lower runs first)
20 */
21 public function getOrder(): int;
22}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected