summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/field/field.api.php2
-rw-r--r--modules/field/field.attach.inc4
-rw-r--r--modules/field/field.crud.inc4
-rw-r--r--modules/field/field.info.inc2
-rw-r--r--modules/field/field.multilingual.inc2
5 files changed, 14 insertions, 0 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
index fccf479f4..4b7124809 100644
--- a/modules/field/field.api.php
+++ b/modules/field/field.api.php
@@ -115,6 +115,8 @@ function hook_field_extra_fields_alter(&$info) {
*
* A third kind of pluggable handlers, storage backends, is defined by the
* @link field_storage Field Storage API @endlink.
+ *
+ * @see field
*/
/**
diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc
index 2419201de..462f8804c 100644
--- a/modules/field/field.attach.inc
+++ b/modules/field/field.attach.inc
@@ -44,6 +44,8 @@ class FieldValidationException extends FieldException {
*
* Each field defines which storage backend it uses. The Drupal system variable
* 'field_storage_default' identifies the storage backend used by default.
+ *
+ * @see field
*/
/**
@@ -117,6 +119,8 @@ define('FIELD_STORAGE_INSERT', 'insert');
* The pre-operation hooks do not make the Field Storage API irrelevant. The
* Field Storage API is essentially the "fallback mechanism" for any fields
* that aren't being intercepted explicitly by pre-operation hooks.
+ *
+ * @see field
*/
/**
diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc
index 41980a87a..ff39f2243 100644
--- a/modules/field/field.crud.inc
+++ b/modules/field/field.crud.inc
@@ -15,6 +15,8 @@
*
* The Field CRUD API uses
* @link field Field API data structures @endlink.
+ *
+ * @see field
*/
/**
@@ -824,6 +826,8 @@ function field_delete_instance($instance, $field_cleanup = TRUE) {
* ),
* );
* @endcode
+ *
+ * @see field
*/
/**
diff --git a/modules/field/field.info.inc b/modules/field/field.info.inc
index 6b172dd34..7a21333a7 100644
--- a/modules/field/field.info.inc
+++ b/modules/field/field.info.inc
@@ -13,6 +13,8 @@
* The Field Info API exposes information about field types, fields,
* instances, bundles, widget types, display formatters, behaviors,
* and settings defined by or with the Field API.
+ *
+ * @see field
*/
/**
diff --git a/modules/field/field.multilingual.inc b/modules/field/field.multilingual.inc
index 5373d9708..ccf01176b 100644
--- a/modules/field/field.multilingual.inc
+++ b/modules/field/field.multilingual.inc
@@ -57,6 +57,8 @@
* even disabled by modules implementing hook_field_language_alter(), making
* it possible to choose the first approach. The display language for each
* field is returned by field_language().
+ *
+ * @see field
*/
/**