Drupal (CMS): How can I pass the full HTML version of a node's content through hook_nodeapi or node_comment?
-
I am finding a hard time finding consistent documentation about the $content object. Specifically, I want to be able to pass a node's or a comment's content including all html (meaning that if I have a link, I want to see both the link and its alternate name). How do I do that and/or where can I find relevant documentation?
-
Answer:
Here's the simple way: $node = node_load($nid); $rendered_node = node_view($node, 'teaser'); This should get you the same data structure that gets passed to node.tpl.php. So as long as you aren't doing anything in node.tpl.php that you shouldn't be, this should get what you need.
Dave Hansen-Lange at Quora Visit the source
Related Q & A:
- How can I pass global variables into a function?Best solution by Stack Overflow
- How can I find and replace html links with Notepad++?Best solution by stackoverflow.com
- How can I return to the old version of My Yahoo?Best solution by Yahoo! Answers
- How can I find Yahoo email address with only a full name?Best solution by Yahoo! Answers
- How can I see messages that were sent in mail 5's conversation view?Best solution by Ask Different
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.