You are here

function facebook_album_build_photo_template in Facebook Album 7.3

Same name and namespace in other branches
  1. 7.2 facebook_album.module \facebook_album_build_photo_template()

Build the template for displaying album photos

Parameters

$settings: An array of settings

$placeholders:

Return value

mixed A prebuilt block of html containing all album photos

1 call to facebook_album_build_photo_template()
facebook_album_ajax_get_album_next in ./facebook_album.module
Fetch the next or previous set of photos from the specified album

File

./facebook_album.module, line 467

Code

function facebook_album_build_photo_template($settings, $placeholders) {
  return theme('facebook_album_photos', [
    'settings' => $settings,
    'photos' => $placeholders,
  ]);
}