Download & Extend

How can I know I got a new trackback?

Project:TrackBack
Version:master
Component:Receiving
Category:feature request
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

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!

Comments

#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

Status:closed (fixed)» 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