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
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

ankur - April 15, 2005 - 20:18

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

kzeng - April 19, 2005 - 00:29

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

ankur - April 22, 2005 - 23:41

#4

Junyor - September 20, 2005 - 19:15
Status:closed» active

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

 
 

Drupal is a registered trademark of Dries Buytaert.