12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ProductAlert\Block\Product\View;
- /**
- * Recurring payment view stock
- *
- * @api
- * @since 100.0.2
- */
- class Stock extends \Magento\ProductAlert\Block\Product\View
- {
- /**
- * Prepare stock info
- *
- * @param string $template
- * @return $this
- */
- public function setTemplate($template)
- {
- if (!$this->_helper->isStockAlertAllowed() || !$this->getProduct() || $this->getProduct()->isAvailable()) {
- $template = '';
- } else {
- $this->setSignupUrl($this->_helper->getSaveUrl('stock'));
- }
- return parent::setTemplate($template);
- }
- }
|