Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Drupal 9 check if UUD is valid

// Checks if the format of UUID is valid.
// Does not verify that the UUID matches an entity
// in the database.
use SymfonyComponentHttpKernelExceptionHttpException;
if (empty($node_uuid) || !Uuid::isValid($node_uuid)) {
    throw new HttpException(400, 'Missing or invalid value for node uuid.');
}
 
PREVIOUS NEXT
Tagged: #Drupal #check #UUD #valid
ADD COMMENT
Topic
Name
2+8 =