/**
  * Get customer's service score logo and output it.
  *
  * @return array
  */
 public function getServiceScoreLogo()
 {
     $url = 'http://www.feefo.com/feefo/feefologo.jsp?logon=';
     $logon = $this->helper->getFeefoLogon();
     $template = '';
     if ($this->helper->getFeefoLogoTemplate()) {
         $template = '&template=' . $this->helper->getFeefoLogoTemplate();
     }
     $fullUrl = $url . $logon . $template;
     $vendorUrl = 'http://www.feefo.com/feefo/viewvendor.jsp?logon=' . $logon;
     return ['vendorUrl' => $vendorUrl, 'fullUrl' => $fullUrl];
 }