node_test_exception.module

A module implementing node related hooks to test API interaction.

File

drupal-7.x/modules/node/tests/node_test_exception.module
View source
  1. <?php
  2. /**
  3. * @file
  4. * A module implementing node related hooks to test API interaction.
  5. */
  6. /**
  7. * Implements hook_node_insert().
  8. */
  9. function node_test_exception_node_insert($node) {
  10. if ($node->title == 'testing_transaction_exception') {
  11. throw new Exception('Test exception for rollback.');
  12. }
  13. }