function theme_recently_read_item in Recently Read 7.2
Same name and namespace in other branches
- 6 recently_read.module \theme_recently_read_item()
- 7 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 284 - Recently read module file. Displays a history of recently read nodes by currently logged in user.
Code
function theme_recently_read_item($variables) {
$item = $variables['item'];
return l($item['title'], 'node/' . $item['nid']);
}