class Com in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Uuid/Com.php \Drupal\Component\Uuid\Com
Generates a UUID using the Windows internal GUID extension.
Hierarchy
- class \Drupal\Component\Uuid\Com implements UuidInterface
Expanded class hierarchy of Com
See also
http://php.net/com_create_guid
1 file declares its use of Com
- UuidTest.php in core/
tests/ Drupal/ Tests/ Component/ Uuid/ UuidTest.php
1 string reference to 'Com'
- CategoryAutocompleteTest::providerTestAutocompleteSuggestions in core/
modules/ block/ tests/ src/ Unit/ CategoryAutocompleteTest.php - Data provider for testAutocompleteSuggestions().
File
- core/
lib/ Drupal/ Component/ Uuid/ Com.php, line 10
Namespace
Drupal\Component\UuidView source
class Com implements UuidInterface {
/**
* {@inheritdoc}
*/
public function generate() {
// Remove {} wrapper and make lower case to keep result consistent.
return strtolower(trim(com_create_guid(), '{}'));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Com:: |
public | function |
Generates a Universally Unique IDentifier (UUID). Overrides UuidInterface:: |