Example #1
0
 /**
  * Get profile image path or placeholder
  * @param \Swissup\Testimonials\Model\Data $testimonial
  * @return String
  */
 public function getImagePath($testimonial)
 {
     $image = $testimonial->getImage();
     if (!$image && ($placeholderImage = $this->_configHelper->getPlaceholderImage())) {
         $image = $placeholderImage;
     }
     return $image;
 }