--- flash_gallery.module 2007-04-19 17:37:29.000000000 +0200
+++ /var/www/tourtools-drupal-5/sites/all/modules/flash_gallery/flash_gallery.module 2008-08-30 00:10:15.000000000 +0200
@@ -145,6 +145,9 @@ function flash_gallery_xml($tid = 0) {
if (variable_get('xml_show_link', 0)) {
$caption[] = ''. l(t('download'), file_create_url($images['_original'])) .'';
}
+ if (variable_get('xml_show_linktonode', 0)) {
+ $caption[] = ''. l(t('view'), $node->path) .'';
+ }
if ($caption) {
$xml .= implode(' :: ', $caption);
unset($caption);
@@ -342,6 +345,12 @@ function flash_gallery_admin_flash_galle
'#title' => t('display download link'),
'#description' => t('Apart from the node title, also display a clickable link to allow downloading the originally uploaded image.'),
);
+ $form['miscellaneous']['xml_show_linktonode'] = array(
+ '#type' => 'checkbox',
+ '#default_value' => variable_get('xml_show_linktonode', 0),
+ '#title' => t('display node link'),
+ '#description' => t('Apart from the node title, also display a clickable link to node image.'),
+ );
$form['miscellaneous']['xml_rebuild_thumbs'] = array(
'#type' => 'checkbox',
'#default_value' => 0,