Skip to content
haschek edited this page Sep 9, 2012 · 3 revisions

Delicious service class

The Delicious service shows the recent bookmarks from a Delicious account. It is a child class of the Feed service, used to simplify configuration.

Configuration values

  • username: username of (your) Delicious account, it's the last part of the Delicious URI http://delicious.com/username
  • tags: (optional) comma separated list of tags, if you want the feed of bookmarks which are tagged by this keywords
  • total: number of shown bookmarks
  • title: title of the rendered service box
  • description: description of the service box, default it is used as sub title

Example configuration

$delicious = array(
    'Delicious', 'bookmarks', array(
		'username' => 'haschek',
		'tags' => 'web, development',
		'total' => 5,
		'title' => 'Delicious',
		'description' => 'latest bookmarks',
	)
);

Template keys

As the Delicious sevice extending the Feed service, you can use all Feed service keys + the special Delicious configuration keys in your templates.