You are here

function fb_connect_enabled_apps in Drupal for Facebook 6.2

Same name and namespace in other branches
  1. 5.2 fb_connect.module \fb_connect_enabled_apps()

Which apps are fbConnect enabled?

2 calls to fb_connect_enabled_apps()
fb_connect_block in ./fb_connect.module
Implementation of hook_block.
fb_connect_user in ./fb_connect.module
Implementation of hook_user

File

./fb_connect.module, line 218
Support for Facebook Connect features

Code

function fb_connect_enabled_apps() {

  // We do a bit of work for each enabled app, so really we want to restrict this list to only apps which have been "turned on".
  // But for now we're lazy and just get the list of all apps.
  $apps = fb_get_all_apps();
  return $apps;
}