You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public function handleForm(ZFDoctrine_Form_Model $form, $action, $controller = null, $module = null, array $params = array())
/*
should use urlOptions as in Zend_View_Helper_url or
$this->_helper->redirector->gotoRoute($urlOptions,$name,$reset,$encode);
However I belive that create a new method to manipulate routes will be a best choice:
handleForm(ZFDoctrine_Form_Model $form, $action, $controller = null, $module = null, array $params = array()){
$this->handleFormWithRoute($form,array(
'controller' => $controller,
'action' => $action,
'module' => $module,
'params' =>$params
),
'default',
true
}
*/
The text was updated successfully, but these errors were encountered:
public function handleForm(ZFDoctrine_Form_Model $form, $action, $controller = null, $module = null, array $params = array())
/*
should use urlOptions as in Zend_View_Helper_url or
$this->_helper->redirector->gotoRoute($urlOptions,$name,$reset,$encode);
calling method handleForm by:
$this->_helper->modelForm->handleForm($model,array(),'banners_list',true)
However I belive that create a new method to manipulate routes will be a best choice:
handleForm(ZFDoctrine_Form_Model $form, $action, $controller = null, $module = null, array $params = array()){
$this->handleFormWithRoute($form,array(
'controller' => $controller,
'action' => $action,
'module' => $module,
'params' =>$params
),
'default',
true
}
*/
The text was updated successfully, but these errors were encountered: