I'm posting this in Module development because I think that's where it fits best, although my question is partly about Drupal in general. I'm trying to determine is Drupal was a good fit for a project I'm working on. I'm fairy sure the answer is "Yes Drupal is perfect for this" but I'd like to hear it from someone who actually knows Drupal :)
I have three requirements for the website:
1) A basic informational website with tabs and pages and links and all that stuff. No visitors will be able to edit pages or anything, just myself or other employees.
2) In that list of tabs will be one special tab, something like "My Account". This is where the bulk of the functionality of the website will be. When you hit this page, instead of displaying an article, it will run custom PHP code to access a SOAP server and display information, configuration forms, etc. For example something like /MyAccount/ will be the home for the user's account, which will list some details about their account in an editable form and have some links. /MyHome/ListMyProducts might list products they have purchased etc. ( I guess I'm saying I want to mostly use Drupal for my site but have a bit of a custom webapp inside of it ).
I think that I just use some sort of node hook and if the name of the node is one of my special pages I deal with it however I want. On the right track?