function removeLink()
 {
     return ShoppingCart_Controller::remove_modifier_link($this->_id);
 }
 /**
  * Link that can be used to remove the modifier
  * @return String
  **/
 public function RemoveLink()
 {
     return ShoppingCart_Controller::remove_modifier_link($this->ID, $this->ClassName);
 }
 /**
  * Link that can be used to remove the modifier
  * @return String
  **/
 public function RemoveLink()
 {
     $param = array();
     $updatedLinkParameters = $this->extend("ModifierRemoveLinkUpdate", $param);
     if ($updatedLinkParameters !== null && is_array($updatedLinkParameters) && count($updatedLinkParameters)) {
         foreach ($updatedLinkParameters as $updatedLinkParametersUpdate) {
             $param += $updatedLinkParametersUpdate;
         }
     }
     return ShoppingCart_Controller::remove_modifier_link($this->ID, $param, $this->ClassName);
 }