ac37efce75cf5f466c8fd9ad100bb8aac14d8059
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / node_validate.twig
1 /**
2  * Implements hook_node_validate().
3  */
4 function {{ machine_name }}_node_validate($node, $form, &$form_state) {
5   if (isset($node->end) && isset($node->start)) {
6     if ($node->start > $node->end) {
7       form_set_error('time', t('An event may not end before it starts.'));
8     }
9   }
10 }