Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Ive been trying a few things with a local drupal and was trying to do some wiki like module. The wiki module for drupal 4.6 can do wiki like syntax and wiki links, but doesn't define a wiki node type. It makes sence to have a custom node type for registered users, though a page module could do this. It is possible to make a wikinode content type using a custom module. You can also link /wiki/nodetitle to wiki node and the noad_load/ show to render it instead of /node/$nid.
I have a problem. I just dont know what should i do to fix it. I installed the flexinode plugin to my drupal site. And when i try to add new content type i have and error:
Fatal error: Call to undefined function: drupal_get_form() in /home/keldrir2/public_html/proov/modules/flexinode/flexinode.module on line 831
And when i try to look the Content Types i have another error:
Fatal error: Call to undefined function: drupal_add_js() in /home/keldrir2/public_html/proov/modules/flexinode/flexinode.module on line 361
I want to develop a module to handle an external db that I want to attach to the drupal site I'm working on. I have extended the user profile to gather info needed for this other db.
I posted this question on another topic called Customizing Comments but the thread die. I wonder if someone can help me.
I am trying to create a module that will allow the user to vote on a node and comment on that vote in the comment section. I have two questions.
First, how do I get the node id number while in the comment section? There is great documentation on the variables available through phptemplate in $node. Unfortunately there is not the same for comments.