How can I know I got a new trackback?
kzeng - March 26, 2005 - 10:27
| Project: | TrackBack |
| Version: | HEAD |
| Component: | Receiving |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I installed the CVS version of trackback module and it works well. But I got a problem: how can I know I got a new trackback? Is it possible to add a block or a seperate page to show the recent incoming trackbacks? Thanks for your help!

#1
A "recent trackbacks" page or "recent trackbacks" block sounds like a useful feature for sites that have a lot of inter-site dialogue going on between trackbacks. Anyone else interested in this feature...? Leaving this issue open for more input...
-Ankur
#2
Thanks for your message. I finally wrote a simple block to achieve this purpose.
<?php
$result = db_query_range('SELECT * FROM {trackback_received} ORDER BY created DESC', 0, 10);
while ($trackback = db_fetch_object($result)) {
echo "<li> <a href='node/ $trackback->nid'> $trackback->subject </a></li>";
}
?>
#3
#4
Yes, I'm interested in this. I use notify.module and I've been missing trackback updates. Perhaps trackback.module could take advantage of the new subscription.module[1]?
[1] http://drupal.org/node/29868