Files
kupshop/bundles/External/ZNZBundle/Admin/Tabs/ZNZDeliveryTab.php
2025-08-02 16:30:27 +02:00

26 lines
437 B
PHP

<?php
declare(strict_types=1);
namespace External\ZNZBundle\Admin\Tabs;
use KupShop\AdminBundle\Admin\WindowTab;
class ZNZDeliveryTab extends WindowTab
{
protected $title = 'flapDeliveryZNZ';
protected $template = 'window/delivery.znz.tpl';
public static function getTypes()
{
return [
'deliveryDelivery' => 0,
];
}
public function getLabel()
{
return 'ZNZ';
}
}