backend_stocks.transfer_info

Adds extra content to the transfer-viewing dialog in backend’s “Products → Stock” section.

Shop-Script

Input (passed by reference)

$params array Parameters.
$params['transfer'] array Transfer data.
$params['transfer']['skus'] array Transfer’s SKU list.
… your plugin code …

Output

{$backend_stocks.transfer_info.transfer_info}
Extra HTML content to be added at the bottom of the transfer-viewing dialog.
Shop-Script

Plugin code example

PHP

public function backendStocksTransferInfo($params)
{
    return [
        'transfer_info' => '<!-- custom HTML -->',
    ];
}