function _ctools_uuid_generate_pecl
Generates an universally unique identifier using the PECL extension.
1 string reference to '_ctools_uuid_generate_pecl'
- ctools_uuid_generate in ./
ctools.module - Wrapper function to create UUIDs via ctools, falls back on UUID module if it is enabled. This code is a copy of uuid.inc from the uuid module.
File
-
includes/
uuid.inc, line 29
Code
function _ctools_uuid_generate_pecl() {
$uuid_type = UUID_TYPE_DEFAULT;
return uuid_create($uuid_type);
}