diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-08 21:22:59 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-08 21:22:59 +0000 |
commit | 341a95b80353ce93c62050c3051c6402063da5dc (patch) | |
tree | 9a3e288e6b05c4f1725373e2afceb780e6f8739b /modules/field/field.module | |
parent | d802c69a43ab0f47e88f8b26ea9f655af1404a5f (diff) | |
download | brdo-341a95b80353ce93c62050c3051c6402063da5dc.tar.gz brdo-341a95b80353ce93c62050c3051c6402063da5dc.tar.bz2 |
#369562 by bjaspan and yched: Clean up a few minor things in field API.
Diffstat (limited to 'modules/field/field.module')
-rw-r--r-- | modules/field/field.module | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index f954291d5..b559db900 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -14,8 +14,8 @@ * objects and takes care of storing, loading, editing, and rendering * field data. Any object type (node, user, etc.) can use the Field * API to make itself "fieldable" and thus allow fields to be attached - * to it. Other modules can provide a user interface for managing custom - * fields via a web browser as well as a wide and flexible variety of + * to it. Other modules can provide a user interface for managing custom + * fields via a web browser as well as a wide and flexible variety of * data type, form element, and display format capabilities. * * - @link field_structs Data structures: Field, Instance, Bundle @endlink. @@ -126,15 +126,6 @@ function field_menu() { } /** - * Implementation of hook elements(). - */ -function field_elements() { - return array( - 'field' => array(), - ); -} - -/** * Implementation of hook_theme(). */ function field_theme() { |