We are customizing mail-wizz for managing tenders and the app is being used only the company staff members.
I'm thinking of extending all the controllers that requires customization and make modifications in the extended class. Something like,
TenderController extends CampaignsController {
//override methods
}
I noticed hooks, but hooks can be attached before or after certain actions, but I need to change the action itself.
Any ideas?
- The campaign has to made available to all customers (here, our colleagues) regardless of who created it.
- When creating campaigns, instead of List, we should allow user to select subscribers (tenderers) from preexisting master list.
I'm thinking of extending all the controllers that requires customization and make modifications in the extended class. Something like,
TenderController extends CampaignsController {
//override methods
}
I noticed hooks, but hooks can be attached before or after certain actions, but I need to change the action itself.
Any ideas?