You are here

function fb_social_theme in Facebook social plugins integration 6.2

Same name and namespace in other branches
  1. 6 fb_social.module \fb_social_theme()
  2. 7.2 fb_social.module \fb_social_theme()

Implementation of hook_theme

File

./fb_social.module, line 89

Code

function fb_social_theme() {
  $path = drupal_get_path('module', 'fb_social');
  return array(
    'fb_social_plugin' => array(
      'template' => 'fb-social-plugin',
      'path' => "{$path}/theme",
      'arguments' => array(
        'plugin_type' => NULL,
        'options' => NULL,
      ),
    ),
  );
}