node_test_exception.module in Drupal 10
Same filename and directory in other branches
A module implementing node related hooks to test API interaction.
File
core/modules/node/tests/modules/node_test_exception/node_test_exception.moduleView source
<?php
/**
* @file
* A module implementing node related hooks to test API interaction.
*/
use Drupal\node\NodeInterface;
/**
* Implements hook_ENTITY_TYPE_insert() for node entities.
*/
function node_test_exception_node_insert(NodeInterface $node) {
if ($node
->getTitle() == 'testing_transaction_exception') {
throw new Exception('Test exception for rollback.');
}
}
Functions
Name | Description |
---|---|
node_test_exception_node_insert | Implements hook_ENTITY_TYPE_insert() for node entities. |