Example #1
0
 /**
  * Return number of left downloads or unlimited
  *
  * @param Item $item
  * @return \Magento\Framework\Phrase|int
  */
 public function getRemainingDownloads($item)
 {
     if ($item->getNumberOfDownloadsBought()) {
         $downloads = $item->getNumberOfDownloadsBought() - $item->getNumberOfDownloadsUsed();
         return $downloads;
     }
     return __('Unlimited');
 }