0

Supose you have a module called orders, which when it adds, It should update a value on another module (table of another module), and orders does include the id of the other module it its table. I plan on doing this with Zend's TableGateway, But I have no idea how would I alter other table.

Julio Villalba
  • 149
  • 1
  • 2
  • 17
  • Please provide some background in order for us to help. What have you tried? Do you have any code examples? – Ankh Jun 04 '15 at 07:40
  • not really I haven't got my mind around how to do it all i could show you is how i'm relating fields, which is by a mapper between model tables – Julio Villalba Jun 04 '15 at 23:57

1 Answers1

0

Well, you can trigger an event after order insert. In your second module create an listener for your order insert event.

venca
  • 1,196
  • 5
  • 18