Imagecache как такового больше не существует. Есть Image styles, своевременная попытка восстановить из небытия пресеты Thumbnail, Original, Preview.

Было в  Drupal 6:

print $node->field_image[0]['view'];

 

Или (тоже Drupal 6):

  print theme('imagecache', 
      'product', 
      $node->field_image_cache[0]['filepath'], 
      '',
      '',
      array()
  );

 

Стало в Drupal 7:

$image = file_load($node->field_pic_teaser['und'][0]['fid']); 
print l(
  theme('image_style', 
    array(
      'style_name' => 'blogteaser200', 
      'path' => $image->uri, 
      'getsize' =>FALSE
    )
  ),
  'node/'.$node->nid,
  array('html'=>TRUE)
);

Данные вещи связаны, в первую очередь, с кардинальным изменением подхода к хранению файлов в Drupal 7.