Implements \Drupal\Core\Form\FormInterface::submitForm().
Overrides FormInterface::submitForm
public function submitForm(array &$form, array &$form_state) {
$this->contactCategory
->delete();
drupal_set_message(t('Category %label has been deleted.', array(
'%label' => $this->contactCategory
->label(),
)));
watchdog('contact', 'Category %label has been deleted.', array(
'%label' => $this->contactCategory
->label(),
), WATCHDOG_NOTICE);
$form_state['redirect'] = 'admin/structure/contact';
}