You are here

function notifications_subscription_form_validate in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_subscription_form_validate()

Validate form submission

1 string reference to 'notifications_subscription_form_validate'
notifications_subscription_base_form in ./notifications.pages.inc
Base subscription form. Present the main fields and check all values

File

./notifications.module, line 1273
Notifications module

Code

function notifications_subscription_form_validate($form, &$form_state) {
  return Notifications_Subscription::build_from_submission($form, $form_state)
    ->form_validate($form, $form_state);
}