summaryrefslogtreecommitdiff
path: root/modules/field_ui/field_ui.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
commit1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch)
treed77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/field_ui/field_ui.module
parent8523aca33e828c638f2373e5be4e80ed30866a58 (diff)
downloadbrdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz
brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.bz2
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/field_ui/field_ui.module')
-rw-r--r--modules/field_ui/field_ui.module14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/field_ui/field_ui.module b/modules/field_ui/field_ui.module
index 31a99ba7d..f89c59af9 100644
--- a/modules/field_ui/field_ui.module
+++ b/modules/field_ui/field_ui.module
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_help().
+ * Implements hook_help().
*/
function field_ui_help($path, $arg) {
switch ($path) {
@@ -29,7 +29,7 @@ function field_ui_help($path, $arg) {
}
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function field_ui_menu() {
$items['admin/reports/fields'] = array(
@@ -152,7 +152,7 @@ function field_ui_menu_label($instance) {
}
/**
- * Implement hook_theme().
+ * Implements hook_theme().
*/
function field_ui_theme() {
return array(
@@ -203,7 +203,7 @@ function field_ui_build_modes_tabs($obj_type, $tab_selector = NULL) {
}
/**
- * Implement hook_field_ui_build_modes_tabs() on behalf of other core modules.
+ * Implements hook_field_ui_build_modes_tabs() on behalf of other core modules.
*
* @return
* An array describing the build modes defined by the module, grouped by tabs.
@@ -245,7 +245,7 @@ function field_ui_field_ui_build_modes_tabs() {
}
/**
- * Implement hook_field_attach_create_bundle().
+ * Implements hook_field_attach_create_bundle().
*/
function field_ui_field_attach_create_bundle($bundle) {
// When a new bundle is created, the menu needs to be rebuilt to add our
@@ -254,7 +254,7 @@ function field_ui_field_attach_create_bundle($bundle) {
}
/**
- * Implement hook_field_attach_rename_bundle().
+ * Implements hook_field_attach_rename_bundle().
*/
function field_ui_field_attach_rename_bundle($bundle_old, $bundle_new) {
if ($bundle_old !== $bundle_new && $extra = variable_get("field_extra_weights_$bundle_old", array())) {
@@ -264,7 +264,7 @@ function field_ui_field_attach_rename_bundle($bundle_old, $bundle_new) {
}
/**
- * Implement hook_field_attach_delete_bundle().
+ * Implements hook_field_attach_delete_bundle().
*/
function field_ui_field_attach_delete_bundle($bundle) {
variable_del('field_extra_weights_' . $bundle);