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