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

24 lines
444 B
PHP

<?php
namespace KupShop\CommentsBundle\Admin\Tabs;
use KupShop\AdminBundle\Admin\WindowTab;
class CommentsSettingsTab extends WindowTab
{
protected $title = 'flapComments';
protected $template = 'window/settings.comments.tpl';
public static function getTypes()
{
return [
'settings' => 0,
];
}
public function getLabel()
{
return translate($this->title, 'Comments');
}
}