Total Complexity | 1 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class ContentList extends GridAbstract |
||
17 | { |
||
18 | const ENTITY_SINGULAR = 'contentList'; |
||
19 | const ENTITY_PLURAL = 'lists'; |
||
20 | |||
21 | const ENTITY_TITLE_PLURAL = 'website:contentLists'; |
||
22 | |||
23 | /** @var string */ |
||
24 | protected $resource = 'lists'; |
||
25 | |||
26 | /** |
||
27 | * ContentList constructor. |
||
28 | * |
||
29 | * @param FlashService $flashService |
||
30 | * @param ITranslator $translator |
||
31 | * @param UrlGenerator $urlGenerator |
||
32 | * @param LoggerInterface $logger |
||
33 | * @param AssetManager $assets |
||
34 | * @param RepoGrid $repoGrid |
||
35 | * @param IEventDispatcher $eventDispatcher |
||
36 | */ |
||
37 | public function __construct( |
||
57 |