class NodeTestExceptionHooks
Hook implementations for node_test_exception.
Hierarchy
- class \Drupal\node_test_exception\Hook\NodeTestExceptionHooks
Expanded class hierarchy of NodeTestExceptionHooks
File
-
core/
modules/ node/ tests/ modules/ node_test_exception/ src/ Hook/ NodeTestExceptionHooks.php, line 13
Namespace
Drupal\node_test_exception\HookView source
class NodeTestExceptionHooks {
/**
* Implements hook_ENTITY_TYPE_insert() for node entities.
*/
public function nodeInsert(NodeInterface $node) {
if ($node->getTitle() == 'testing_transaction_exception') {
throw new \Exception('Test exception for rollback.');
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.