Feature #12969
closedAbility to redefine "Help" link
0%
Description
It would be useful to redefine the "help" link, to link them to some wikipage for example.
The most endusers won't request some feature on Redmine. It would be useful to link it to a selfdefined wikipage.
What do you think?
Related issues
Updated by Ivan Cenov almost 12 years ago
Edit source:/trunk/lib/redmine/info.rb. Change the line 6:
def help_url; 'http://www.redmine.org/guide' endto what you want, par example
def help_url; 'http://redmine.mycompany.com/projects/help/wiki' end
Updated by Daniel Felix almost 12 years ago
Thanks Ivan. I found this line too. But this always requires some codechange on every update. With some option, this could be handled much better.
Updated by Mischa The Evil almost 12 years ago
- Subject changed from Abbility to redefine "Help" link to Ability to redefine "Help" link
Updated by Jean-Philippe Lang almost 12 years ago
Daniel Felix wrote:
Thanks Ivan. I found this line too. But this always requires some codechange on every update. With some option, this could be handled much better.
You can use the menu API to remove the default item and add your own from a plugin.
Updated by Mischa The Evil almost 12 years ago
Jean-Philippe Lang wrote:
You can use the menu API to remove the default item and add your own from a plugin.
See source:/trunk/lib/redmine/plugin.rb#L251 (menu
and aliased #add_menu_item
) upto source:/trunk/lib/redmine/plugin.rb#L265 (#delete_menu_item
).
Edit: I think this could be done best using a custom plugin. Close as won't fix?
Updated by Jean-Philippe Lang almost 12 years ago
- Status changed from New to Closed
- Resolution set to Wont fix
Updated by Mischa The Evil almost 12 years ago
I started work on a new plugin for this. The Redmine Custom Help URL plugin is the result.
See for the first public announcement.