You are here

function theme_finder_block in Finder 7

Same name and namespace in other branches
  1. 6 includes/finder.inc \theme_finder_block()
  2. 6 includes/finder.theme.inc \theme_finder_block()

Theme the finder block wrapper.

Parameters

$variables['finder']: The finder object.

1 theme call to theme_finder_block()
finder_block_view in ./finder.module
Implements hook_block_view().

File

includes/finder.theme.inc, line 126
Theme functions for the finder module.

Code

function theme_finder_block($variables) {
  $finder = $variables['finder'];
  $output = '<div id="finder-block-' . $finder->finder_id . '" class="finder-block">';
  $output .= finder_view($finder, 'block');
  $output .= '</div>';
  return $output;
}