You are here

function theme_gallery_assist_item_box in Gallery Assist 6

Theme the Gallery Assist Item-Box.

1 theme call to theme_gallery_assist_item_box()
gallery_assist_item_box in ./gallery_assist_display.inc
Build and return the gallery item box.

File

./gallery_assist_display.inc, line 332
Build and display the Gallery Assist Container. This file will be included if the parameter "show_layout" is setted to "grid"

Code

function theme_gallery_assist_item_box($ga_item_box, $ga_item_title, $ga_edit_link = '', $ga_item_attr = '') {
  $output = '<div' . $ga_item_attr . '>' . "\n";
  $output .= $ga_item_box;
  $output .= $ga_item_title;
  $output .= '</div>' . "\n";
  return $output;
}