Right now when you land on the help page you are left entirely alone in how to actually set up the module. We could help this significantly by providing some inline help on how to set up the module.
While we could use hook_help() for this purpose, I'm more inclined to use drupal_set_message() for several reasons:
- It's more visible than help in most themes.
- We don't need to display the help if the site is already set up.
- We should display errors, warnings, or information if the site is set up incorrectly or correctly.
This patch provides a full step-by-step setup instruction as well as error reporting of incorrect codes and confirmation of working ones.
Comments
Comment #1
quicksketchSorry that patch contained an unrelated change to the ooyala_ping() function. I've committed this version which is just the help changes.