Hi,
I have installed Drupal 7 and it is working fine.
I dont want to use the new content type core because it is creating to tables per field which is problematic if you want to create 150 fields and more.
The CCK creates only one table per content type which is a lot better.
I am porting my modules to D7 and came up with the question "What's the recommended way to get comment body?"
When the comment is passed as a object $comment (e.g. hook_comment_presave(), hook_comment_save()), the body seems to be in $comment->comment_body[LANGUAGE_NONE][0]['value'];
Instead of accessing it with render($comment->comment_body[LANGUAGE_NONE][0]['value']), is there any better way to obtain the comment body?
I need a block where taxonomy terms are shown like a menu.
Something similar to http://thanhsiang.org/faqing/node/44 ( function taxonomy_node_get_terms is not available in DP7 ).