Daniel Hood
Well-known member
I'm working on an add on that requires changing a type of field, I've altered the table, I've extended the datawriter, the model, etc... My problem is the controller. I don't want to over-write the entire function obviously but I need change the type of input expected. I can't do it with the typical:
Because parent:: does stuff (some of which I need to modify) before returning. Any ideas?
Code:
$parent = parent::actionSave();
$var = $parent->var;
.....
.....