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