When you go to http://drupal.org/project/Modules You have three tabs. How do you set these tabs in place?
Modules do this with the hook_menu() function. You also see this behavior when viewing a node for which you have permission to alter (the "view", "edit", and "revisions" tabs).
hook_menu()
- Corey
Is there a dummies guide for this, I am very new, and I am still trying to grasp the concept of how everything works.
No, there's no dummies guide, unfortunately. Your best bet is to get acquainted with the handbook (link at the top of the page).
Drupal has a large learning curve. Once you get it, though, you will be amazed at the power and flexibility available to you.
Comments
Modules do this with the
Modules do this with the
hook_menu()function. You also see this behavior when viewing a node for which you have permission to alter (the "view", "edit", and "revisions" tabs).- Corey
Is there a dummies guide for
Is there a dummies guide for this, I am very new, and I am still trying to grasp the concept of how everything works.
No, there's no dummies
No, there's no dummies guide, unfortunately. Your best bet is to get acquainted with the handbook (link at the top of the page).
Drupal has a large learning curve. Once you get it, though, you will be amazed at the power and flexibility available to you.
- Corey