It would be useful to display content types submission guidelines (admin/content/node-type/your-type > Submission form settings) at the top of the respective page in the route.
They would help admins explain users what they need to do in the form.
cheers
Comments
Comment #1
sepgil commentedIt was decided to kick out the Node Managment page type(http://drupal.org/node/558862) and since this bug only appears on the sub pages(edit or add) of Node Managment, there nothng left to fix.
Comment #2
sepgil commenteddamn wrong issue, I'm very sorry....
Comment #3
NaX commentedThe problem here is that pageroute is not implementing hook_help().
I created two version of hook_help(). The first one is the simplest but requires loading the full page route object.
I don't know how efficient the pageroute class is and how much is cached so I looked into a second method that is more code but avoids load the pageroute object unless absolutely needed.
If you put any of these 2 version into your pageroute.module file it should work. I put it above pageroute_menu() function after the define() constants.
Version one:
Version Two: