You are here

function available_facebook_destinations in Facebook Autopost 7

Returns the available destinations Pages + 'me'.

1 string reference to 'available_facebook_destinations'
fb_autopost_entity_rules_action_info in fb_autopost_entity/fb_autopost_entity.rules.inc
Implements hook_rules_action_info().

File

fb_autopost_entity/fb_autopost_entity.rules.inc, line 162
Rules integration.

Code

function available_facebook_destinations() {
  return array_merge(array(
    'me' => '- ' . t("Facebook logged in user's timeline"),
  ), fb_autopost_entity_available_facebook_pages());
}