You are here

function facebook_comments_block_theme in Facebook Comments Block 8.2

Same name and namespace in other branches
  1. 8 facebook_comments_block.module \facebook_comments_block_theme()
  2. 7.2 facebook_comments_block.module \facebook_comments_block_theme()
  3. 7 facebook_comments_block.module \facebook_comments_block_theme()

Implements hook_theme().

File

./facebook_comments_block.module, line 44
facebook_comments_block.module

Code

function facebook_comments_block_theme($existing, $type, $theme, $path) {
  return array(
    'facebook_comments_block_block' => array(
      'variables' => array(
        'data_attributes' => NULL,
        'facebook_app_id' => NULL,
        'facebook_app_lang' => NULL,
      ),
      'template' => 'block--facebook-comments-block',
    ),
  );
}