You are here

function reviews_theme in Reviews 1.0.x

Same name and namespace in other branches
  1. 7 reviews.module \reviews_theme()

Implements hook_theme().

File

./reviews.module, line 21
Contains reviews.module.

Code

function reviews_theme($existing, $type, $theme, $path) {
  return [
    'review' => [
      'render element' => 'elements',
    ],
    'no_reviews' => [
      'render element' => 'elements',
    ],
  ];
}