| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 | <?php/** * @file * Hooks provided by the UUID module. *//** * Defines one or more UUID generators exposed by a module. * * @return *   An associative array with the key being the machine name for the *   implementation and the values being an array with the following keys: *     - title: The human readable name for the generator. *     - callback: The function to be called for generating the UUID. * * @see uuid_get_info() */function hook_uuid_info() {  $generators = array();  $generators['my_module'] = array(    'title' => t('My module UUID generator'),    'callback' => 'my_module_generate_uuid',  );  return $generators;}/** * Ensures all records have a UUID assigned to them. * * When called this hook should ensure all records it is responsible for * have a UUID and if not create one. * * @see entity_uuid_sync() */function hook_uuid_sync() {  // Do what you need to do to generate missing UUIDs for you implementation.}/** * Let modules transform their properties with local IDs to UUIDs when an * entity is loaded. */function hook_entity_uuid_load(&$entities, $entity_type) {}/** * Let modules transform their fields with local IDs to UUIDs when an entity * is loaded. */function hook_field_uuid_load($entity_type, $entity, $field, $instance, $langcode, &$items) {}/** * Let modules transform their properties with UUIDs to local IDs when an * entity is saved. */function hook_entity_uuid_presave(&$entity, $entity_type) {}/** * Let modules transform their fields with UUIDs to local IDs when an entity * is saved. */function hook_field_uuid_presave($entity_type, $entity, $field, $instance, $langcode, &$items) {}/** * Let modules transform their properties when an entity is saved. */function hook_entity_uuid_save($entity, $entity_type) {}/** * Let modules act when an entity is deleted. */function hook_entity_uuid_delete($entity, $entity_type) {}/** * Let modules modify paths when they are being converted to UUID ones. */function hook_uuid_menu_path_to_uri_alter($path, &$uri) {}/** * Let modules modify paths when they are being converted from UUID ones. */function hook_uuid_menu_uri_to_path(&$path, $uri) {}/** * Allow modules to provide a list of default entities that will be imported. */function hook_uuid_default_entities() {}/** * Let other modules do things before default entities are created on rebuild. */function hook_uuid_entities_pre_rebuild($plan_name) {}/** * Let other modules do things after default entities are created on rebuild. */function hook_uuid_entities_post_rebuild($plan_name) {}/** * Let other modules do things before default entities are created on revert. */function hook_uuid_entities_pre_rebuild($plan_name) {}/** * Let other modules do things after default entities are created on revert. */function hook_uuid_entities_post_rebuild($plan_name) {}/** * Let other modules alter entities that are about to be exported. */function hook_uuid_entities_features_export_entity_alter(&$entity, $entity_type) {}/** * Let other modules alter fields on entities that are about to be exported. */function hook_uuid_entities_features_export_field_alter($entity_type, &$entity, $field, $instance, $langcode, &$items) {}/** * Alter UUID URI data after processing. */function hook_uuid_uri_data($data) {}/** * Alter UUID URI data after processing. */function hook_uuid_uri_data($data) {}/** * Alter entity URI before creating UUID URI. */function hook_uuid_id_uri_data($data) {}
 |