| 1 |
<?php |
<?php |
| 2 |
// $Id: image_attach.module,v 1.65 2009/09/08 13:12:55 joachim Exp $ |
// $Id: image_attach.module,v 1.66 2009/09/08 13:14:49 joachim Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file image_attach.module |
* @file image_attach.module |
| 542 |
foreach ($image_nodes as $image) { |
foreach ($image_nodes as $image) { |
| 543 |
// Render each image from the node. |
// Render each image from the node. |
| 544 |
$img = image_display($image, variable_get('image_attach_block_0_size', IMAGE_THUMBNAIL)); |
$img = image_display($image, variable_get('image_attach_block_0_size', IMAGE_THUMBNAIL)); |
| 545 |
$content .= '<div class="attached-image">' .l($img, "node/$iid", array('html' => TRUE)). '</div>'; |
$content .= '<div class="attached-image">' .l($img, 'node/' . $image->nid, array('html' => TRUE)). '</div>'; |
| 546 |
} |
} |
| 547 |
return '<div class="all-attached-images">' .$content. '</div>'; |
return '<div class="all-attached-images">' .$content. '</div>'; |
| 548 |
} |
} |