示例#1
0
	/**
	 * 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');
	}
示例#2
0
 /**
  * Shows the order details
  */
 public function edit($layout = 'order')
 {
     parent::edit($layout);
 }
示例#3
0
 /**
  * Shows the product add/edit screen
  */
 public function edit($layout = 'edit')
 {
     parent::edit('product_edit');
 }
示例#4
0
 /**
  * Shows the product add/edit screen
  */
 public function edit()
 {
     parent::edit('product_edit');
 }
示例#5
0
 /**
  * Shows the order details
  */
 public function edit()
 {
     parent::edit('order');
 }