You are here

function fb_get_all_apps in Drupal for Facebook 5.2

Same name and namespace in other branches
  1. 5 fb.module \fb_get_all_apps()
  2. 6.3 fb.module \fb_get_all_apps()
  3. 6.2 fb.module \fb_get_all_apps()
  4. 7.3 fb.module \fb_get_all_apps()

Convenience method to return array of all know fb_apps.

2 calls to fb_get_all_apps()
fb_connect_enabled_apps in ./fb_connect.module
Which apps are fbConnect enabled?
fb_get_app_options in ./fb.module
Convenience method to return a list of all known apps, suitable for form elements.

File

./fb.module, line 398

Code

function fb_get_all_apps() {
  $apps = fb_invoke(FB_OP_GET_ALL_APPS, NULL, array());
  return $apps;
}