summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-12-10 23:34:11 -0600
committerwebchick <webchick@24967.no-reply.drupal.org>2011-12-10 23:34:11 -0600
commite9360598a8ae2e98376670ef80dcfeeb3072dfc4 (patch)
treef602d4997117a59484729ddf43482d6f116a12eb
parent3eeeca30b0c625accaae425dfef6d05bddcbc377 (diff)
downloadbrdo-e9360598a8ae2e98376670ef80dcfeeb3072dfc4.tar.gz
brdo-e9360598a8ae2e98376670ef80dcfeeb3072dfc4.tar.bz2
Issue #673224 by rocket_nova, jhodgdon: Fixed None of the hooks in field.api.php are grouped as such.
-rw-r--r--modules/field/field.api.php22
1 files changed, 5 insertions, 17 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
index d0d5da9c6..fccf479f4 100644
--- a/modules/field/field.api.php
+++ b/modules/field/field.api.php
@@ -1,7 +1,7 @@
<?php
/**
- * @ingroup field_fieldable_type
+ * @ingroup hooks
* @{
*/
@@ -81,10 +81,6 @@ function hook_field_extra_fields_alter(&$info) {
}
/**
- * @} End of "ingroup field_fieldable_type"
- */
-
-/**
* @defgroup field_types Field Types API
* @{
* Define field types, widget types, display formatter types, storage types.
@@ -1505,10 +1501,6 @@ function hook_field_attach_delete_bundle($entity_type, $bundle, $instances) {
* @} End of "ingroup field_attach"
*/
-/**********************************************************************
- * Field Storage API
- **********************************************************************/
-
/**
* @ingroup field_storage
* @{
@@ -2346,10 +2338,6 @@ function hook_field_widget_properties_ENTITY_TYPE_alter(&$widget, $context) {
* @} End of "ingroup field_storage"
*/
-/**********************************************************************
- * Field CRUD API
- **********************************************************************/
-
/**
* @ingroup field_crud
* @{
@@ -2603,10 +2591,6 @@ function hook_field_storage_purge($entity_type, $entity, $field, $instance) {
* @} End of "ingroup field_crud"
*/
-/**********************************************************************
- * TODO: I'm not sure where these belong yet.
- **********************************************************************/
-
/**
* Determine whether the user has access to a given field.
*
@@ -2633,3 +2617,7 @@ function hook_field_access($op, $field, $entity_type, $entity, $account) {
}
return TRUE;
}
+
+/**
+ * @} End of "ingroup hooks"
+ */