26 lines
437 B
PHP
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';
|
|
}
|
|
}
|