interface UuidInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Uuid/UuidInterface.php \Drupal\Component\Uuid\UuidInterface
Interface for generating UUIDs.
Hierarchy
- interface \Drupal\Component\Uuid\UuidInterface
Expanded class hierarchy of UuidInterface
All classes that implement UuidInterface
9 files declare their use of UuidInterface
- BaseFieldOverrideStorage.php in core/
lib/ Drupal/ Core/ Field/ BaseFieldOverrideStorage.php - Contains \Drupal\Core\Field\BaseFieldOverrideStorage.
- ConfigEntityStorage.php in core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityStorage.php - Contains \Drupal\Core\Config\Entity\ConfigEntityStorage.
- FieldConfigStorage.php in core/
modules/ field/ src/ FieldConfigStorage.php - Contains \Drupal\field\FieldConfigStorage.
- FieldStorageConfigStorage.php in core/
modules/ field/ src/ FieldStorageConfigStorage.php - Contains \Drupal\field\FieldStorageConfigStorage.
- KeyValueEntityStorage.php in core/
lib/ Drupal/ Core/ Entity/ KeyValueStore/ KeyValueEntityStorage.php - Contains \Drupal\Core\Entity\KeyValueStore\KeyValueEntityStorage.
File
- core/
lib/ Drupal/ Component/ Uuid/ UuidInterface.php, line 13 - Contains \Drupal\Component\Uuid\UuidInterface.
Namespace
Drupal\Component\UuidView source
interface UuidInterface {
/**
* Generates a Universally Unique IDentifier (UUID).
*
* @return
* A 16 byte integer represented as a hex string formatted with 4 hyphens.
*/
public function generate();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UuidInterface:: |
public | function | Generates a Universally Unique IDentifier (UUID). | 3 |