diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-22 01:31:34 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-22 01:31:34 -0800 |
commit | 86ff7681c807de1673f4c34ac0a2c368f3d0b97c (patch) | |
tree | 3519eedde5e91bfa0f7e4eecc79d2ac62ab91dc4 | |
parent | 2550674cc80bc67a8efdbc645409ef0300a00266 (diff) | |
download | brdo-86ff7681c807de1673f4c34ac0a2c368f3d0b97c.tar.gz brdo-86ff7681c807de1673f4c34ac0a2c368f3d0b97c.tar.bz2 |
Issue #1349610 by bartlantz, jhodgdon: Make the subtopics of Field API link back to it.
-rw-r--r-- | modules/field/field.api.php | 3 | ||||
-rw-r--r-- | modules/field/field.attach.inc | 6 | ||||
-rw-r--r-- | modules/field/field.crud.inc | 6 | ||||
-rw-r--r-- | modules/field/field.info.inc | 3 | ||||
-rw-r--r-- | modules/field/field.multilingual.inc | 3 |
5 files changed, 14 insertions, 7 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php index 4b7124809..ebaec922f 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -116,7 +116,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 + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc index 462f8804c..e46f9c41c 100644 --- a/modules/field/field.attach.inc +++ b/modules/field/field.attach.inc @@ -45,7 +45,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 + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** @@ -120,7 +121,8 @@ define('FIELD_STORAGE_INSERT', 'insert'); * Field Storage API is essentially the "fallback mechanism" for any fields * that aren't being intercepted explicitly by pre-operation hooks. * - * @see field + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc index ff39f2243..6df32352b 100644 --- a/modules/field/field.crud.inc +++ b/modules/field/field.crud.inc @@ -16,7 +16,8 @@ * The Field CRUD API uses * @link field Field API data structures @endlink. * - * @see field + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** @@ -827,7 +828,8 @@ function field_delete_instance($instance, $field_cleanup = TRUE) { * ); * @endcode * - * @see field + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** diff --git a/modules/field/field.info.inc b/modules/field/field.info.inc index 7a21333a7..6724a208b 100644 --- a/modules/field/field.info.inc +++ b/modules/field/field.info.inc @@ -14,7 +14,8 @@ * instances, bundles, widget types, display formatters, behaviors, * and settings defined by or with the Field API. * - * @see field + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** diff --git a/modules/field/field.multilingual.inc b/modules/field/field.multilingual.inc index ccf01176b..4b4f01d7d 100644 --- a/modules/field/field.multilingual.inc +++ b/modules/field/field.multilingual.inc @@ -58,7 +58,8 @@ * it possible to choose the first approach. The display language for each * field is returned by field_language(). * - * @see field + * See @link field Field API @endlink for information about the other parts of + * the Field API. */ /** |