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

26 lines
438 B
PHP

<?php
declare(strict_types=1);
namespace External\HannahBundle\Admin\Tabs;
use KupShop\AdminBundle\Admin\WindowTab;
class ParametersOCTab extends WindowTab
{
protected $title = 'flapParametersOC';
protected $template = 'window/parameters.oc.tpl';
public static function getTypes()
{
return [
'parameters' => -10,
];
}
public function getLabel()
{
return 'OC';
}
}