You are here

function flickr_sets_theme in Flickr 7

Same name and namespace in other branches
  1. 6 sets/flickr_sets.module \flickr_sets_theme()

Implements hook_theme().

File

sets/flickr_sets.module, line 157
The Flickr sets module.

Code

function flickr_sets_theme() {
  return array(
    'flickr_sets_photosets' => array(
      'variables' => array(
        'uid',
        'nsid',
        'photosets',
      ),
    ),
    'flickr_sets_photoset' => array(
      'variables' => array(
        'uid',
        'per_page',
        'photo_arr',
        'set_info',
      ),
    ),
    'flickr_sets_photoset_box' => array(
      'variables' => array(
        'size' => NULL,
        'format' => NULL,
      ),
    ),
  );
}