You are here

public function FBAutopost::setDestination in Facebook Autopost 7

Set the destination to publish to

Parameters

$destination:

Return value

Returns itsef for chainable code.

1 call to FBAutopost::setDestination()
FBAutopost::publish in class/FBAutopost.php
Publishes content in the selected pages

File

class/FBAutopost.php, line 321

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

public function setDestination($destination) {
  $this->destination = $destination;
  return $this;
}