You are here

function fb_get_all_apps in Drupal for Facebook 5

Same name and namespace in other branches
  1. 5.2 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_cron_cron in ./fb_cron.module
hook_cron()
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 325

Code

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