Example: in Controller Session/add_new_product I have a forward:
return $this->dispatcher->forward(array( 'controller' => 'session', 'action' => 'login' ));
then in SessionController/login, how can I check request is forwarded from add_new_product or directly from browser? (or I must add some params like a flag variable to check?)
Thanks