Project:Favorite Nodes
Version:master
Component:Code
Category:feature request
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

It would be great to have a feature to show the number of times a certain node have been favorited by people, like on YouTube.

Comments

#1

I'm also looking for same feature.

#2

You can get this by putting the following function in your themes template.php

function _favorite_nodes_count($nid) {
  $sql = "SELECT * FROM {favorite_nodes} WHERE nid = %d";
  return db_num_rows(db_query($sql, $nid));
}

And then you can call the function in your node template like this:
<?php print(_favorite_nodes_count($node->nid)); ?>