Project

General

Profile

How To develop plugin for Redmine

Added by Anonymous about 14 years ago

Hi,

On issue I need to add 3 new custom fields.

- Business Value (Numeric)
- Story Point (Numeric)
- ROI (Numeric, Formula: Business Value / Story Point)

Filtering against these custom fields is not required. But I'd like to sort issues by ROI.

The plugin seems to be quite easy to implement, but I've got no technical background neither ruby nor rails.

Do you provide any materials (doc, skeleton plugin, ...) to get started?

Any help would be appreciated,

Regards,
Alexandre


Replies (4)

RE: How To develop plugin for Redmine - Added by Felix Schäfer about 14 years ago

You can already add custom fields to issues, that should take care of the first 2. The last one is programmatic and needs some extra coding that can be done in a plugin. You can either extend the Issue model to add that as an attribute and add some custom views so that you can see them, but that would get you only so far. The imho best way would be to extend the custom fields model to get this functionality.

RE: How To develop plugin for Redmine - Added by Anonymous about 14 years ago

Thanks for all your inputs. The plugin works like a charm!

RE: How To develop plugin for Redmine - Added by Anonymous about 14 years ago

I used the Due Date plugin from Eric Davis as a skeleton.

    (1-4/4)