18 lines
		
	
	
		
			360 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			360 B
		
	
	
	
		
			Plaintext
		
	
	
<?php
 | 
						|
// $Id$
 | 
						|
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Dummy module implementing node related hooks to test API interaction with
 | 
						|
 * the Node module.
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Implement hook_node_insert().
 | 
						|
 */
 | 
						|
function node_test_exception_node_insert($node) {
 | 
						|
  if ($node->title['zxx'][0]['value'] == 'testing_transaction_exception') {
 | 
						|
    throw new Exception('Test exception for rollback.');
 | 
						|
  }
 | 
						|
}
 |