Hi All,
I am nearing a decent stopping place with the development of my first module. I'm not really a developer, but I've been able to get the jist of what PHP is about. Oh yeah, before I installed drupal last week I'd never worked with PHP before.
The module is merrily an integration of Dwop Live into the Drupal framework. What this gives you is the ability to parse dmoz data into drupal dynamically, but with the benefit of cache so your server isn't fetching the data each time. You can either grab the entire root of dmoz, or like me tailor a specific tree depending on the site.
In any case I could use some feedback on the module if anyone is interested. I've got it working within the Drupal framework, but I still have some wonky bugs to work out:
1. The users session is not persisting when in my module, not sure if there is some sort of _persist flag I need to set?
2. I tried my best to set all the definable data in the admin screen for the module, but the script requires a server path (/home/sites/blah) that I could never set right. Suffice it to say I'm not sure how to join to strings in PHP. There are a few places in the code that call for
$variable = $pathname + $someothervariable;
I wasn't sure how to join it properly....in any case I'm learning!
3. Where can I insert a link to this module in the primary navigation of the site?