12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Block;
- use Magento\Customer\Api\AccountManagementInterface;
- use Magento\Customer\Api\CustomerRepositoryInterface;
- /**
- * Customer front newsletter manage block
- *
- * @api
- * @SuppressWarnings(PHPMD.DepthOfInheritance)
- * @since 100.0.2
- */
- class Newsletter extends \Magento\Customer\Block\Account\Dashboard
- {
- /**
- * @var string
- */
- protected $_template = 'Magento_Customer::form/newsletter.phtml';
- /**
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getIsSubscribed()
- {
- return $this->getSubscriptionObject()->isSubscribed();
- }
- /**
- * Return the save action Url.
- *
- * @return string
- */
- public function getAction()
- {
- return $this->getUrl('newsletter/manage/save');
- }
- }
|