You are here

function fb_connect_enabled_apps in Drupal for Facebook 5.2

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

Which apps are fbConnect enabled?

1 call to fb_connect_enabled_apps()
fb_connect_block in ./fb_connect.module
Implementation of hook_block.

File

./fb_connect.module, line 64
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;
}