You are here

function social_comments_theme in Open Social 7

Implements hook_theme().

File

./social_comments.module, line 52

Code

function social_comments_theme() {
  $themes = array();
  $themes['social_comments_items'] = array(
    'variables' => array(
      'comments' => array(),
      'bundle' => NULL,
      'entity_type' => NULL,
      'type' => NULL,
    ),
    'template' => 'social-comments-items',
    'path' => drupal_get_path('module', 'social_comments') . '/templates',
  );
  return $themes;
}