Your IP : 172.28.240.42


Current Path : /var/www/html/clients/td-teplouchet.ru/old/modules/node/tests/
Upload File :
Current File : /var/www/html/clients/td-teplouchet.ru/old/modules/node/tests/node_test_exception.module

<?php

/**
 * @file
 * A module implementing node related hooks to test API interaction.
 */

/**
 * Implements hook_node_insert().
 */
function node_test_exception_node_insert($node) {
  if ($node->title == 'testing_transaction_exception') {
    throw new Exception('Test exception for rollback.');
  }
}