function hook_validate

Perform node validation before a node is created or updated.

This hook is invoked only on the module that defines the node's content type (use hook_node_validate() to act on all node validations).

This hook is invoked from NodeFormController::validate(), after a user has finished editing the node and is previewing or submitting it. It is invoked at the end of all the standard validation steps, and before hook_node_validate() is invoked.

To indicate a validation error, use form_set_error().

Note: Changes made to the $node object within your hook implementation will have no effect. The preferred method to change a node's content is to use hook_node_presave() instead.

Parameters

Drupal\node\Node $node: The node being validated.

$form: The form being used to edit the node.

$form_state: The form state array.

Related topics

98 functions implement hook_validate()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

action_admin_configure_validate in drupal/core/modules/action/action.admin.inc
Form validation handler for action_admin_configure().
action_send_email_action_validate in drupal/core/modules/action/action.module
Validates action_send_email_action() form submissions.
aggregator_form_category_validate in drupal/core/modules/aggregator/aggregator.admin.inc
Form validation handler for aggregator_form_category().
aggregator_form_feed_validate in drupal/core/modules/aggregator/aggregator.admin.inc
Form validation handler for aggregator_form_feed().
aggregator_form_opml_validate in drupal/core/modules/aggregator/aggregator.admin.inc
Form validation handler for aggregator_form_opml().

... See full list

File

drupal/core/modules/node/node.api.php, line 1264
Hooks provided by the Node module.

Code

function hook_validate(Drupal\node\Node $node, $form, &$form_state) {
  if (isset($node->end) && isset($node->start)) {
    if ($node->start > $node->end) {
      form_set_error('time', t('An event may not end before it starts.'));
    }
  }
}