I have a node in Drupal with a few comments. Is there an easyish way to get the CID of every comment within the node? Also, is there a way to sort them by various parameters, chronology, karma of the comment etc. Thank you.
|
|
I have a node in Drupal with a few comments. Is there an easyish way to get ... I suppose you should check the comment_render function. |
||
|
|
|
|
what sql commands do i need to use for own sort parameter? |
||
|
|
|
|
Very useful website, thanks for this article and very interesting design, thanks. http://geasdromax.net>gedasmax |
||
|
|
|
|
Simpler solution:
Our initial SQL query only needs to fetch the comment ID (cid) as comment_render's second parameter will handle fetching all the additional information. |
||
|
|
|
|
I suppose you should check the comment_render function. But if you need your own sort parameter, it'd be easier to do it using sql commands; Check: http://api.drupal.org/api/function/comment_render/6 You can first make a query listing all the cid's on whatever you need to order;
This query exists on the comment_render function. But I tried to modify it for my use. Now we have the node id and the cids in the order we wanted. Here is the rendering work;
I haven't tested this one, but I hope it helps. |
||
|
|
