You are here

function aggregator_page_last in Drupal 4

Same name and namespace in other branches
  1. 5 modules/aggregator/aggregator.module \aggregator_page_last()
  2. 6 modules/aggregator/aggregator.pages.inc \aggregator_page_last()
  3. 7 modules/aggregator/aggregator.pages.inc \aggregator_page_last()

Menu callback; displays the most recent items gathered from any feed.

1 string reference to 'aggregator_page_last'
aggregator_menu in modules/aggregator.module
Implementation of hook_menu().

File

modules/aggregator.module, line 1041
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_page_last() {
  return _aggregator_page_list('SELECT i.*, f.title AS ftitle, f.link AS flink FROM {aggregator_item} i INNER JOIN {aggregator_feed} f ON i.fid = f.fid ORDER BY i.timestamp DESC, i.iid DESC', arg(1));
}