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