You are here

function similarterms_theme in Similar By Terms 7

Same name and namespace in other branches
  1. 6 similarterms.module \similarterms_theme()

Implements hook_theme().

File

./similarterms.module, line 548
Similar By Terms module displays a block with similar content based on taxonomy terms.

Code

function similarterms_theme() {
  return array(
    'similarterms' => array(
      'template' => 'similarterms',
      'variables' => array(
        'display_options' => NULL,
        'nodes' => NULL,
      ),
    ),
  );
}