You are here

function theme_gallery_assist_pager in Gallery Assist 6

Theme the output from the gallery pager.

4 theme calls to theme_gallery_assist_pager()
gallery_assist_display in ./gallery_assist_display.inc
Display the Gallery Assist Container as grid.
gallery_assist_display_item_default in ./gallery_assist.module
Build the output to display each gallery image. Call the own pager and the theme.
gallery_assist_display_list in ./gallery_assist_list_display.inc
Display the Gallery Assist Container as list.
gallery_assist_edit_one in ./gallery_assist.module
Allow to edit each Gallery Assist Item separately.

File

./gallery_assist.module, line 4343
Drupal content type with gallery functionality.

Code

function theme_gallery_assist_pager($node_light, $links, $extras = array()) {
  $output = '<div id="ga-pager-box" class="pager-' . $extras['pager_position'] . ' clear-block next-line" style="' . $extras['pager_style'] . '">';
  $output .= $links;
  $output .= '</div>';
  return $output;
}