/**
  * Returns the attributed payment methods as string (limited to 150 chars).
  *
  * @return string
  *
  * @author Sascha Koehler <*****@*****.**>, Sebastian Diel <*****@*****.**>
  * @since 05.04.2012
  */
 public function AttributedPaymentMethods()
 {
     return SilvercartTools::AttributedDataObject($this->SilvercartPaymentMethods());
 }
 /**
  * Returns the attributed zones as string (limited to 150 chars).
  *
  * @return string
  *
  * @author Sascha Koehler <*****@*****.**>, Sebastian Diel <*****@*****.**>
  * @since 05.04.2012
  * @deprecated
  */
 public function AttributedZones()
 {
     return SilvercartTools::AttributedDataObject($this->SilvercartZone());
 }
 /**
  * Returns the attributed shipping methods as string (limited to 150 chars).
  *
  * @return string
  *
  * @author Sascha Koehler <*****@*****.**>, Sebastian Diel <*****@*****.**>
  * @since 05.04.2012
  */
 public function AttributedShippingMethods()
 {
     return SilvercartTools::AttributedDataObject($this->SilvercartShippingMethod());
 }
 /**
  * Returns the attributed payment methods as string (limited to 150 chars).
  * 
  * @param string $dbField Db field to use to display
  *
  * @return string
  *
  * @author Sascha Koehler <*****@*****.**>, Sebastian Diel <*****@*****.**>
  * @since 01.02.2013
  */
 public function AttributedPaymentMethods($dbField = "Name")
 {
     return SilvercartTools::AttributedDataObject($this->SilvercartPaymentMethods(), $dbField);
 }