function fb_social_theme in Facebook social plugins integration 7.2
Same name and namespace in other branches
- 6.2 fb_social.module \fb_social_theme()
- 6 fb_social.module \fb_social_theme()
Implementation of hook_theme
File
- ./
fb_social.module, line 97
Code
function fb_social_theme($existing, $type, $theme, $path) {
$path1 = drupal_get_path('module', 'fb_social');
return array(
'fb_social_plugin' => array(
'template' => 'fb-social-plugin',
'path' => "{$path1}/theme",
'variables' => array(
'plugin_type' => NULL,
'options' => array(),
),
),
);
}