Notices.php 558 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Frontend form key content block
  8. */
  9. namespace Magento\Cookie\Block\Html;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Notices extends \Magento\Framework\View\Element\Template
  15. {
  16. /**
  17. * Get Link to cookie restriction privacy policy page
  18. *
  19. * @return string
  20. * @codeCoverageIgnore
  21. */
  22. public function getPrivacyPolicyLink()
  23. {
  24. return $this->_urlBuilder->getUrl('privacy-policy-cookie-restriction-mode');
  25. }
  26. }