Upload Photo link in Image Gallery
Posted by cithukyaw on March 21, 2011 at 4:55am
Hi Drupalers
I have a link "Upload Photo" in image-view-image-gallery.tpl.php. It is created from mytheme_preprocess_image_view_image_gallery().
<?php
function mytheme_preprocess_image_view_image_gallery(&$vars, $hook){
if(user_access('create images')){
$view = $vars['view'];
$links[] = array('title' => 'Upload photo', 'href' => 'node/add/image','query'=>'tid='.$view->args[1]);
}
$vars['links'] = $links;
}
?>Here is the code for image-view-image-gallery.tpl.php
<?php
print theme_links($links);
?>