Image Gallery

Events happening in the community are now at Drupal community events on www.drupal.org.
cithukyaw's picture

Upload Photo link in Image Gallery

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);
?>

Read more
Subscribe with RSS Syndicate content