Projet

Général

Profil

Paste
Télécharger (2,83 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / uuid / uuid.api.php @ 27945136

1 85ad3d82 Assos Assos
<?php
2
3
/**
4
 * @file
5
 * Hooks provided by the UUID module.
6
 */
7
8
/**
9
 * Ensures all records have a UUID assigned to them.
10
 *
11
 * When called this hook should ensure all records it is responsible for
12
 * have a UUID and if not create one.
13
 *
14
 * @see entity_uuid_sync()
15
 */
16
function hook_uuid_sync() {
17
  // Do what you need to do to generate missing UUIDs for you implementation.
18
}
19
20
/**
21
 * Let modules transform their properties with local IDs to UUIDs when an
22
 * entity is loaded.
23
 */
24
function hook_entity_uuid_load(&$entities, $entity_type) {
25
26
}
27
28
/**
29
 * Let modules transform their fields with local IDs to UUIDs when an entity
30
 * is loaded.
31
 */
32
function hook_field_uuid_load($entity_type, $entity, $field, $instance, $langcode, &$items) {
33
34
}
35
36
/**
37
 * Let modules transform their properties with UUIDs to local IDs when an
38
 * entity is saved.
39
 */
40
function hook_entity_uuid_presave(&$entity, $entity_type) {
41
42
}
43
44
/**
45
 * Let modules transform their fields with UUIDs to local IDs when an entity
46
 * is saved.
47
 */
48
function hook_field_uuid_presave($entity_type, $entity, $field, $instance, $langcode, &$items) {
49
50
}
51
52
/**
53
 * Let modules transform their properties when an entity is saved.
54
 */
55
function hook_entity_uuid_save($entity, $entity_type) {
56
57
}
58
59
/**
60
 * Let modules act when an entity is deleted.
61
 */
62
function hook_entity_uuid_delete($entity, $entity_type) {
63
64
}
65
66
/**
67
 * Let modules modify paths when they are being converted to UUID ones.
68
 */
69
function hook_uuid_menu_path_to_uri_alter($path, &$uri) {
70
71
}
72
73
/**
74
 * Let modules modify paths when they are being converted from UUID ones.
75
 */
76
function hook_uuid_menu_uri_to_path(&$path, $uri) {
77
78
}
79
80
/**
81
 * Allow modules to provide a list of default entities that will be imported.
82
 */
83
function hook_uuid_default_entities() {
84
85
}
86
87
/**
88
 * Let other modules do things before default entities are created on rebuild.
89
 */
90
function hook_uuid_entities_pre_rebuild($plan_name) {
91
92
}
93
94
/**
95
 * Let other modules do things after default entities are created on rebuild.
96
 */
97
function hook_uuid_entities_post_rebuild($plan_name) {
98
99
}
100
101
/**
102
 * Let other modules do things before default entities are created on revert.
103
 */
104 e7101f36 Julien Enselme
function hook_uuid_entities_pre_revert($plan_name) {
105 85ad3d82 Assos Assos
106
}
107
108
/**
109
 * Let other modules do things after default entities are created on revert.
110
 */
111 e7101f36 Julien Enselme
function hook_uuid_entities_post_revert($plan_name) {
112 85ad3d82 Assos Assos
113
}
114
115
/**
116
 * Let other modules alter entities that are about to be exported.
117
 */
118
function hook_uuid_entities_features_export_entity_alter(&$entity, $entity_type) {
119
120
}
121
122
/**
123
 * Let other modules alter fields on entities that are about to be exported.
124
 */
125
function hook_uuid_entities_features_export_field_alter($entity_type, &$entity, $field, $instance, $langcode, &$items) {
126
127
}
128
129
/**
130
 * Alter UUID URI data after processing.
131
 */
132
function hook_uuid_uri_data($data) {
133
}
134
135
/**
136
 * Alter entity URI before creating UUID URI.
137
 */
138
function hook_uuid_id_uri_data($data) {
139
}