Skip to content
Michael Haschke edited this page Nov 7, 2015 · 9 revisions

PubwichFork Services

Pubwich aggregates and integrates data from Social Web and Media Services (e.g. Atom/RSS feeds or Twitter streams) via single service classes.

Basic configuration

  • title: title of the rendered service box
  • description: description of the service box, in the default template it is used as sub title
  • total: number of items to display
  • cache_limit: number of seconds cache will stay valid for this service

Beside that you need the service class name and an ID to configure service usages:

$feed_rss = array(
    'Feed', // service class name
    'feed_rss', // service id
    array(
        // service configuration
        'title' => 'Polly Blog Stew',
        'description' => 'Beastie Boys Fanblog',
        'url' => 'http://pollyblogstew.diving-robot.de/feed/',
        'contenttype' => 'application/rss+xml',
        'link' => 'http://pollyblogstew.diving-robot.de/',
        'cache_limit' => 12 * 60 * 60, // 12h
        'total' => 3,
    )
);

List of usable Services

Currently services can be classified by:

  • PubwichFork supported: services which are officially supported by PublichFork
  • PubwichFork legacy: services which were originally introduced by Pubwich and successfully tested with PubwichFork
  • PubwichFork untested: services were supported by original Pubwich but currently not tested with PubwichFork (but probably working, please add bug reports if not)

Please use the original Pubwich documentation for services marked with TODO. Feel free to extend service descriptions here yourself.

PubwichFork supported

PubwichFork legacy

PubwichFork untested