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

26 lines
431 B
PHP

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