public function FacebookPublicationEntity::defaultUri in Facebook Autopost 7
Gets the default URI for the publication.
Overrides Entity::defaultUri
File
- fb_autopost_entity/
fb_autopost_entity.module, line 513 - Module implementation file
Class
- FacebookPublicationEntity
- The class used for Facebook publication entities.
Code
public function defaultUri() {
return array(
// TODO: Define this URL in hook_menu.
'path' => 'facebook-publication/' . $this->fbpid,
);
}