Hello,
I've successfully developped a set of custom node modules:
-One to upload an MS project xml file (generated from a little javascript script), for me as a team leader
-Another to allow my team members to create their weekly: It create a 'team_weekly' node with the task list that are in plan for the current week and the current user, and using a "dynamic" form (form API drupal 4.7) collect their working time for each tasks + some other custom fields for our corporate weekly template, everything ends in a mysql table.
First thing : I was new to php/mysql/drupal (but a long time C/C++ developper) and the drupal framework seem sto be pretty straight forward, even if I've started with a "not so simple module :-)" so kudos to you guys.
Second step: I want to create some "team tracking pages" in which I want to :
-display a form that has fileds like how many weeks? Which resources?. and a submit button.
-at submit, do all my own db queries ... and display the results.
And it is where I'm pretty stuck: I can't find what type of module I have to build.
here : http://drupal.org/node/55868 there is an example of a "block" module. But in my case I would need a "full" page module, with a two steps approach (first fill in a form then submit then display results).
Any help, pointer to existing module/example would help me a lot as I don't know what to start here.
Thanks for your help.