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