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.
Can someone tell me please what lines in this file profile.modules are responsible for rendering
administrator defined form content ?
I have created a select box using the admninistration area /admin/setting/profile but now need to understand how this is generated as i would like to give an alternate radio format for this html structure
Does anybody know of module that would deal with Genealogy and creating family tree or is there any previous or current development done that would do this?
Hi. I am working on my first module which started as copy of node_example.module. I have successfully introduced a custom table and form, and data is inserted just fine via "create content". However I am not able to retrieve and/or display data from the custom node. I see the node title, but that is all. "View" and "edit" show the title, but not my custom fields. No errors either. I keep referring back to node_example.module. I've tried to make only minimal changes in my module since this is a learning process. The results are the same whether I am authed with admin privileges or authed with normal privileges.
Suggestions specific to the problem above would be greatly appreciated. However what I would like even more is a brief tutorial for the beginner on how to debug a module because I've yet to come across useful debugging techniques, and I've read a lot of documenation and I've searched the forums. I have yet to figure out how to print the value of a variable at a given point in the code, or to print a message to let me know a certain code point has been reached. For example I'd really like to "step into" my module's version of hook_access so I can verify what is going on by examining the variables, etc.
I have encountered tidbits of information on drupal_set_message, but not enough to make it do anything at all as far as I can tell. I'm not even sure if it is in the ballpark of what I need.
I'm new here. I'm not sure this is the correct place to post. I just wanted to let somebody know that in the event module in the file event.module, in the function event_calendar_data, the following SQL:
$result = db_query(db_rewrite_sql('SELECT DISTINCT(n.nid) FROM {event} e INNER JOIN {node} n USING (nid) WHERE n.status = 1 AND ((e.start > %d AND e.start < %d) OR (e.end > %d AND e.end < %d) OR (e.start < %d AND e.end > %d)) ORDER BY e.start '), $first, $last, $first, $last, $first, $last);
I have an idea for a module. Before I start working on it, I thought I would ask if others thought it was a good idea.
My idea is that when you create a node it would automatically tag it with a taxonomy term for the current date (this would be configurable whether it would be a tag for the day, week, month, or even year of creation). If this term did not exist it would create it. Probably it would optionally also automatically create a URL alias along the lines of "/viewbydate/June_2005" where viewbydate would be a custamizable string.