25 lines
448 B
PHP
25 lines
448 B
PHP
<?php
|
|
|
|
namespace KupShop\POSBundle\Admin\Tabs;
|
|
|
|
use KupShop\AdminBundle\Admin\WindowTab;
|
|
|
|
class PosAdminSettingsTab extends WindowTab
|
|
{
|
|
protected $title = 'flapPosAdminSettings';
|
|
|
|
protected $template = 'window/PosAdminSettings.tpl';
|
|
|
|
public function getLabel()
|
|
{
|
|
return translate($this->title, 'posSettings');
|
|
}
|
|
|
|
public static function getTypes()
|
|
{
|
|
return [
|
|
'admins' => 1,
|
|
];
|
|
}
|
|
}
|