Files
kupshop/bundles/KupShop/SellerBundle/Admin/Tabs/TranslationsSellerWindowTab.php
2025-08-02 16:30:27 +02:00

33 lines
620 B
PHP

<?php
namespace KupShop\SellerBundle\Admin\Tabs;
use KupShop\AdminBundle\Admin\WindowTab;
class TranslationsSellerWindowTab extends WindowTab
{
protected $title = 'flapTranslationsSeller';
protected $template = 'window/translationsSeller.tpl';
public static function getTypes()
{
return [
'admins' => 99,
];
}
public static function isAllowed()
{
if (!findModule(\Modules::TRANSLATIONS)) {
return false;
}
return true;
}
public function getLabel()
{
return 'Oprávnění: Prodejci překlady';
}
}