summaryrefslogtreecommitdiff
path: root/modules/field/field.install
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2012-10-09 10:51:38 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2012-10-09 10:51:38 -0700
commitf91d2c95442c3a70aa15ffb31c9d69233e75d9c6 (patch)
treee98702f24a72804c697b92b077100683b2811b25 /modules/field/field.install
parente320619e0796769c45c987e4efe6031e53ca0a03 (diff)
downloadbrdo-f91d2c95442c3a70aa15ffb31c9d69233e75d9c6.tar.gz
brdo-f91d2c95442c3a70aa15ffb31c9d69233e75d9c6.tar.bz2
Issue #1134088 by Cottser, catch: Properly document update-api functions
Diffstat (limited to 'modules/field/field.install')
-rw-r--r--modules/field/field.install10
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/field/field.install b/modules/field/field.install
index 5934a264c..34d28073d 100644
--- a/modules/field/field.install
+++ b/modules/field/field.install
@@ -172,7 +172,7 @@ function field_schema() {
* This function can be used for databases whose schema is at field module
* version 7000 or higher.
*
- * @ingroup update-api-6.x-to-7.x
+ * @ingroup update_api
*/
function _update_7000_field_create_field(&$field) {
// Merge in default values.`
@@ -253,7 +253,7 @@ function _update_7000_field_create_field(&$field) {
* @param $field_name
* The field name to delete.
*
- * @ingroup update-api-6.x-to-7.x
+ * @ingroup update_api
*/
function _update_7000_field_delete_field($field_name) {
$table_name = 'field_data_' . $field_name;
@@ -284,7 +284,7 @@ function _update_7000_field_delete_field($field_name) {
*
* This function is valid for a database schema version 7000.
*
- * @ingroup update-api-6.x-to-7.x
+ * @ingroup update_api
*/
function _update_7000_field_delete_instance($field_name, $entity_type, $bundle) {
// Delete field instance configuration data.
@@ -322,6 +322,8 @@ function _update_7000_field_delete_instance($field_name, $entity_type, $bundle)
* @return
* An array of fields matching $conditions, keyed by the property specified
* by the $key parameter.
+ *
+ * @ingroup update_api
*/
function _update_7000_field_read_fields(array $conditions = array(), $key = 'id') {
$fields = array();
@@ -356,7 +358,7 @@ function _update_7000_field_read_fields(array $conditions = array(), $key = 'id'
* This function can be used for databases whose schema is at field module
* version 7000 or higher.
*
- * @ingroup update-api-6.x-to-7.x
+ * @ingroup update_api
*/
function _update_7000_field_create_instance($field, &$instance) {
// Merge in defaults.