summaryrefslogtreecommitdiff
path: root/modules/image/image.field.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/image/image.field.inc')
-rw-r--r--modules/image/image.field.inc31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/image/image.field.inc b/modules/image/image.field.inc
index d8a1788ca..106e68e26 100644
--- a/modules/image/image.field.inc
+++ b/modules/image/image.field.inc
@@ -34,37 +34,6 @@ function image_field_info() {
}
/**
- * Implements hook_field_schema().
- */
-function image_field_schema($field) {
- return array(
- 'columns' => array(
- 'fid' => array(
- 'description' => 'The {files}.fid being referenced in this field.',
- 'type' => 'int',
- 'not null' => FALSE,
- 'unsigned' => TRUE,
- ),
- 'alt' => array(
- 'description' => "Alternative image text, for the image's 'alt' attribute.",
- 'type' => 'varchar',
- 'length' => 128,
- 'not null' => FALSE,
- ),
- 'title' => array(
- 'description' => "Image title text, for the image's 'title' attribute.",
- 'type' => 'varchar',
- 'length' => 128,
- 'not null' => FALSE,
- ),
- ),
- 'indexes' => array(
- 'fid' => array('fid'),
- ),
- );
-}
-
-/**
* Implements hook_field_settings_form().
*/
function image_field_settings_form($field, $instance) {