Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Uuid/Com.php \Drupal\Component\Uuid\Com
  2. 9 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 \Drupal\Component\Uuid\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\Uuid
View 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