/** * Handle the edit task */ function edit($view=0){ //We set here the virtuemart_user_id, when no virtuemart_user_id is set to 0, for adding a new user //In every other case the virtuemart_user_id is sent. $cid = vRequest::getVar('virtuemart_user_id'); if(!isset($cid)) vRequest::setVar('virtuemart_user_id', (int)0); parent::edit('edit'); }
/** * Shows the order details */ public function edit($layout = 'order') { parent::edit($layout); }
/** * Shows the product add/edit screen */ public function edit($layout = 'edit') { parent::edit('product_edit'); }
/** * Shows the product add/edit screen */ public function edit() { parent::edit('product_edit'); }
/** * Shows the order details */ public function edit() { parent::edit('order'); }