Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a plugin in redmine and I need to use hooks. I have very basic understanding of hooks, so not sure how to use them in the current context.

I want to display a view file or a partial on the main page of redmine.

I have put following lines in init.rb

menu :application_menu, :displayissue, { :controller => 'summarywidget', :action =>    'index' }, :caption => 'Time Widget'

This creates a menu item on the application menu. Clicking this menu item I can see the view page. But I want to see this view page (as a partial) on the main page of redmine and not in the scope of plugin.

Redmine Version i am using is 1.3.*

Are hooks best for this requirement? Or is there any other approach?

share|improve this question

migrated from superuser.com Jul 31 '12 at 13:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.