You are here

function fboauth_theme in Facebook OAuth (FBOAuth) 7

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

Implements hook_theme().

File

./fboauth.module, line 45

Code

function fboauth_theme() {
  return array(
    'fboauth_action' => array(
      'pattern' => 'fboauth_action__[a-z0-9_]+',
      'variables' => array(
        'action' => NULL,
        'properties' => NULL,
      ),
    ),
    'fboauth_action__connect' => array(
      'variables' => array(
        'action' => NULL,
        'properties' => NULL,
      ),
    ),
    'fboauth_user_form_connect' => array(
      'variables' => array(
        'uid' => NULL,
        'fbid' => NULL,
      ),
    ),
    'fboauth_user_info' => array(
      'variables' => array(
        'account' => NULL,
      ),
      'file' => 'includes/fboauth.pages.inc',
    ),
  );
}