oont-contents/plugins/woocommerce-pdf-invoices-packing-slips/ubl/Handlers/Common/UblVersionIdHandler.php
2025-02-10 13:57:45 +01:00

24 lines
470 B
PHP

<?php
namespace WPO\IPS\UBL\Handlers\Common;
use WPO\IPS\UBL\Handlers\UblHandler;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class UblVersionIdHandler extends UblHandler {
public function handle( $data, $options = array() ) {
$UBLVersionID = array(
'name' => 'cbc:UBLVersionID',
'value' => '2.1',
);
$data[] = apply_filters( 'wpo_wc_ubl_handle_UBLVersionID', $UBLVersionID, $data, $options, $this );
return $data;
}
}