Recursively load nodes from a rich data model
If you've ever worked with a rich data model in drupal you know it can be a pain to load up all the children and parents of a node within the...
Lately I've been working on a project to allow drupal to intelligently manage legacy data, to display, edit, and work with all aspects of the data as securely as possible. Naturally, it's difficult to say the least but I've learned a great deal. One of the things I thought was going to be a pain but ended up easy was managing where the fields appeared on a form. Yes, I could set the weights manually through the Forms API but CCK actually gives us some really great tools to do this without sweating. For reference, this is based on the wonderful if totally impossible to find article here: The Great Pretender.
If you've ever worked with a rich data model in drupal you know it can be a pain to load up all the children and parents of a node within the...
Recently I was working with the Drupal services module, and ran into a few hang ups. For my project I needed a rest service that could export xml...
I've been playing with D7 forms lately and have found #states to be somewhat challenging due to lack of documentation on Form API page. I've poked...