aggregator_page_last

Definition

aggregator_page_last()
modules/aggregator.module, line 1041

Description

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

Code

<?php
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));
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.