You are here

function fbconnect_theme in Facebook Connect 5

Same name and namespace in other branches
  1. 6.2 fbconnect.module \fbconnect_theme()
  2. 6 fbconnect.module \fbconnect_theme()

Impletementation of hook_theme

File

./fbconnect.module, line 1055
This module allows site visitors to connect and register with facebook account

Code

function fbconnect_theme() {
  return array(
    'block_fbconnect' => array(
      'arguments' => array(
        'data' => NULL,
        'account' => NULL,
      ),
    ),
    'render_friends_list_fbconnect' => array(
      'arguments' => array(
        'data' => NULL,
        'title' => NULL,
      ),
    ),
  );
}