24 lines
444 B
PHP
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');
|
|
}
|
|
}
|