function aggregator_page_last

Page callback: Displays the most recent items gathered from any feed.

Return value

The rendered list of items for the feed.

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

File

modules/aggregator/aggregator.pages.inc, line 14

Code

function aggregator_page_last() {
    drupal_add_feed('aggregator/rss', variable_get('site_name', 'Drupal') . ' ' . t('aggregator'));
    $items = aggregator_feed_items_load('sum');
    return _aggregator_page_list($items, arg(1));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.