You are here

protected function FBAutopost::getEndpoint in Facebook Autopost 7

Gets the endpoint of a publication

Return value

string String containing the endpoint

1 call to FBAutopost::getEndpoint()
FBAutopost::publishOn in class/FBAutopost.php
Publishes on a single destination.

File

class/FBAutopost.php, line 100

Class

FBAutopost
API class to handle common actions when autoposting This class uses FBAutopostException for error handling. Severity is passed resusing watchdog severity (See: http://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/watch...)

Code

protected function getEndpoint() {
  return $this->publication_types[$this
    ->getType()]['endpoint'];
}