Call One Action From Another in Magento

It is possible to call one action from another in Magento

Posted on March 30, 2016 in Magento

Fox example, let us consider 2 action methods:

  • addAction()

  • updateAction()

You can do a forward, for instance:


public function addAction() {
    $this->_forward('update');
}


comments powered by Disqus