You are here

function theme_fbconnect_login_button in Facebook Connect 6.2

Same name and namespace in other branches
  1. 8.2 fbconnect_login/fbconnect_login.module \theme_fbconnect_login_button()
  2. 7.2 fbconnect_login/fbconnect_login.module \theme_fbconnect_login_button()

@todo.

1 theme call to theme_fbconnect_login_button()
fbconnect_render_button in ./fbconnect.module
Render a custom button to log in via Facebook.

File

./fbconnect.module, line 858
Integration with Facebook Connect API.

Code

function theme_fbconnect_login_button($text, $attr) {
  return '<fb:login-button ' . drupal_attributes($attr) . '>' . $text . '</fb:login-button>';
}