function fb_connect_theme in Drupal for Facebook 6.2
Implements hook_theme().
We use theme function for XFBML username and picture so that the markup can be relatively easily customized.
File
- ./
fb_connect.module, line 806 - Support for Facebook Connect features
Code
function fb_connect_theme() {
return array(
'fb_connect_fbml_username' => array(
'arguments' => array(
'fbu' => NULL,
'object' => NULL,
'orig' => NULL,
),
),
'fb_connect_fbml_user_picture' => array(
'arguments' => array(
'fbu' => NULL,
'account' => NULL,
'orig' => NULL,
),
),
'fb_connect_fbml_popup' => array(
'arguments' => array(
'elements' => NULL,
),
),
);
}