node_test_exception.module 334 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * Dummy module implementing node related hooks to test API interaction with
  5. * the Node module.
  6. */
  7. /**
  8. * Implements hook_node_insert().
  9. */
  10. function node_test_exception_node_insert($node) {
  11. if ($node->title == 'testing_transaction_exception') {
  12. throw new Exception('Test exception for rollback.');
  13. }
  14. }