You are here

function theme_recently_read_item in Recently Read 6

Same name and namespace in other branches
  1. 7 recently_read.module \theme_recently_read_item()
  2. 7.2 recently_read.module \theme_recently_read_item()
1 theme call to theme_recently_read_item()
theme_recently_read_item_list in ./recently_read.module
Return a themed list of recently read items.

File

./recently_read.module, line 347
Recently read module file. Displays a history of recently read nodes by currently logged in user.

Code

function theme_recently_read_item($item) {
  return l($item['title'], 'node/' . $item['nid']);
}