class 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 string reference to 'Com'
- LinkItem::generateSampleValue in core/
modules/ link/ src/ Plugin/ Field/ FieldType/ LinkItem.php - Generates placeholder field values.
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
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
Com::generate | public | function | Generates a Universally Unique IDentifier (UUID). | Overrides UuidInterface::generate |