Re: CakePHP 3 Component

2015-07-17 Thread Rafael Queiroz
Mark, Thanks a lot, solved my problem. On Fri, Jul 17, 2015 at 5:55 AM, euromark wrote: > Your models should stay stateless, as such you should never internally use > the session. > Instead, pass the data to the model layer or use events to pass them > > Use https://github.com/UseMuffin/Footpri

Re: CakePHP 3 Component

2015-07-17 Thread Jeremy Burns : Class Outfit
What about the situation where you have a multi-step process inside a model/s and you want to make the progress status available to javascript calls? > On 17 Jul 2015, at 09:55, euromark wrote: > > Your models should stay stateless, as such you should never internally use > the session. > Inst

Re: CakePHP 3 Component

2015-07-17 Thread euromark
Your models should stay stateless, as such you should never internally use the session. Instead, pass the data to the model layer or use events to pass them Use https://github.com/UseMuffin/Footprint Mark Am Donnerstag, 16. Juli 2015 23:03:45 UTC+2 schrieb Rafael Queiroz: > > Hi guys, > > I ne