Example #1
0
 /**
  * @return bool|string
  */
 protected function getImageUrl(\Fastgento\Storelocator\Model\Location $location)
 {
     $url = false;
     if ($location->getImage()) {
         $url = $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . '/category/' . $this->getValue();
     }
     return $url;
 }