Eccube\Entity\Product::getMainListImage PHP Method

getMainListImage() public method

public getMainListImage ( )
    public function getMainListImage()
    {
        $ProductImages = $this->getProductImage();
        return empty($ProductImages) ? null : $ProductImages[0];
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getMainListImage()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMainListImage', array());
     return parent::getMainListImage();
 }