Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Newsletter.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Customer\Block;
7 
10 
19 {
23  protected $_template = 'Magento_Customer::form/newsletter.phtml';
24 
29  public function getIsSubscribed()
30  {
31  return $this->getSubscriptionObject()->isSubscribed();
32  }
33 
39  public function getAction()
40  {
41  return $this->getUrl('newsletter/manage/save');
42  }
43 }